 body {
            font-family: "Microsoft YaHei", Arial, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #fffcea;
        }

        .container {
    width: 100%;
    padding-right: 10px;
    padding-left: 10px;
    margin-right: auto;
    margin-left: auto;
}

/* 响应式断点 */
@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}
@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}
@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}
@media (min-width: 1200px) {
    .container {
        max-width: 1400px; /* 保持您设置的宽屏宽度 */
    }
}
        .header {
            background: linear-gradient(135deg, #c00 0%, #900 100%);
             
            width: 100%;
           max-height:500px;
             background-size: cover;
          
             
             
        }
        .header h1 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            font-weight: bold;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }
        .header p {
            font-size: 1.3rem;
            margin-bottom: 0;
            opacity: 0.9;
        }
        @media (max-width: 768px) {
            .header img {
                
                max-height: 120px;
             
            }
            
            .header h1 {
                font-size: 1.8rem;
            }
            .header p {
                font-size: 1rem;
            }
        }
         @media (max-width: 480px) {
            .header img {
               
                max-height: 120px;
            }
            .header h1 {
                font-size: 1.5rem;
            }
            .header p {
                font-size: 0.9rem;
            }
        }

 .carousel {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            margin-bottom: 30px;
        }
        .carousel-inner {
            height: 400px;
        }
        .carousel-item img {
            height: 100%;
            object-fit: cover;
        }
        .carousel-caption {
            background: rgba(0, 0, 0, 0.6);
            padding: 20px;
            border-radius: 8px;
        }
        .carousel-caption h3 {
            color: white;
            font-weight: bold;
        }
        .carousel-caption p {
            color: white;
        }
  @media (max-width: 768px) {
            .carousel-inner {
                height: 300px;
            }
        }

          .carousel-inner {
                height: 200px;
            }
            .carousel-caption {
                padding: 10px;
            }
            .carousel-caption h3 {
                font-size: 1rem;
            }
            .carousel-caption p {
                font-size: 0.8rem;
            }

        .nav {
            background-color: white;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
             margin-bottom: 0px;
            position: sticky;
          /*  top: 0;*/
           /* z-index: 1000;*/
             
        }
        .nav .container {
            display: flex;
            justify-content: center;
           
        }
        .nav-link {
            color: #333;
            
            padding: 18px 28px;
            transition: all 0.3s ease;
            position: relative;
             font-size:24px;
            font-weight:bolder;
        }
        .nav-link:hover {
            color: #c00;
            background-color: #f8f9fa;
        }
        .nav-link.active {
            color: #c00;
            font-weight: bold;
        }
        .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background-color: #c00;
        }
        .content {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            padding: 40px;
            margin-bottom: 30px;
            border-radius: 8px;
            margin-top: 30px;
        }
        .section {
            margin-bottom: 50px;
        }
        .section h2 {
            color: #c00;
            font-size: 24px;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 3px solid #c00;
            position: relative;
            font-weight: bolder;
        }
        .section h2 a{
            
        color: #c00;
        text-decoration: none;
        }
        .section h2::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 100px;
            height: 3px;
            background-color: #900;
        }
        .section h3 {
            color: #c00;
            font-size: 18px;
            margin-bottom: 20px;
            margin-top: 30px;
        }
        .news-item {
            border-bottom: 1px solid #e9ecef;
            padding: 20px 0;
            transition: all 0.3s ease;
        }
        .news-item:hover {
            background-color: #f8f9fa;
            padding-left: 15px;
        }
        .news-item:last-child {
            border-bottom: none;
        }
        .news-title {
            font-weight: 600;
            margin-bottom: 8px;
            font-size: 1.1rem;
        }
        .news-title a {
            color: #333;
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 20px;
        }
        .news-title a:hover {
            color: #c00;
        }
        .news-meta {
            font-size: 14px;
            color: #6c757d;
            margin-bottom: 10px;
        }
        .news-content {
            color: #6c757d;
            
            line-height: 1.6;
            font-size: 16px;
        }
        .img-container {
            margin: 30px 0;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }
        .img-container img {
            width: 100%;
            height: auto;
            transition: transform 0.3s ease;
        }
        .img-container:hover img {
            transform: scale(1.02);
        }
        .quote {
            background-color: #f8f9fa;
            border-left: 4px solid #c00;
            padding: 25px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
            position: relative;
        }
        .quote::before {
            content: ">";
            font-size: 4rem;
            color: #c00;
            opacity: 0.1;
            position: absolute;
            top: -10px;
            left: 10px;
        }
        .quote p {
            margin-bottom: 10px;
            font-style: italic;
            position: relative;
            z-index: 1;
        }
        .quote p:last-child {
            margin-bottom: 0;
        }
        .footer {
            background-color: #333;
            color: white;
            padding: 50px 0;
            text-align: center;
            border-top: 5px solid #c00;
        }
        .footer p {
            margin-bottom: 12px;
        }
        .footer a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
            margin: 0 10px;
        }
        .footer a:hover {
            color: white;
        }
        .btn-primary {
            background-color: #c00;
            border-color: #c00;
            transition: all 0.3s ease;
        }
        .btn-primary:hover {
            background-color: #900;
            border-color: #900;
            transform: translateY(-2px);
        }
        .card {
            border: none;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            margin-bottom: 30px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-radius: 8px;
            overflow: hidden;
        }
        .card img{
            max-height: 300px;
        }
        .card:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }
        .card-body {
            padding: 15px;
        }
        .card-title {
            color: #c00;
             
            margin-bottom: 15px;
            font-size: 18px;
            font-weight: bolder;
        }
        .card-text {
            color: #6c757d;
            margin-bottom: 20px;
            line-height: 1.6;
        }
        .date-badge {
            background-color: #c00;
            color: white;
            padding: 4px 10px;
            border-radius: 15px;
            font-size: 14px;
            margin-right: 10px;
        }
        .list-unstyled li {
            margin-bottom: 12px;
        }
        .list-unstyled li a {
            color: #333;
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 16px;
        }
        .list-unstyled li a:hover {
            color: #c00;
            padding-left: 5px;
        }
        .contact-info {
            background-color: #f8f9fa;
            padding: 25px;
            border-radius: 8px;
            border-left: 4px solid #c00;
        }
        .contact-info h3 {
            margin-top: 0;
        }
        .timeline {
            position: relative;
            padding-left: 40px;
        }
        .timeline::before {
            content: '';
            position: absolute;
            left: 10px;
            top: 0;
            bottom: 0;
            width: 2px;
            background-color: #c00;
        }
        .timeline-item {
            position: relative;
            margin-bottom: 30px;
        }
        .timeline-item::before {
            content: '';
            position: absolute;
            left: -30px;
            top: 5px;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background-color: #c00;
            border: 3px solid white;
            box-shadow: 0 0 0 2px #c00;
        }
        .timeline-item h4 {
            color: #c00;
            margin-bottom: 10px;
        }
        .timeline-item p {
            margin-bottom: 0;
            color: #6c757d;
        }
        @media (max-width: 768px) {
            .header {
                padding: 60px 0;
            }
            .header h1 {
                font-size: 2rem;
            }
            .nav .container {
                flex-wrap: wrap;
            }
            .nav-link {
                padding: 12px 18px;
            }
            .content {
                padding: 25px;
            }
            .section h2 {
                font-size: 1.6rem;
            }
            .section h3 {
                font-size: 1.3rem;
            }
        }
     .ubox p.title {
  position: absolute;  text-align: center;
  /* left: 50%; */
  bottom: 0px;
  line-height: 30px;
  color: #FFF;
  display: block;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 30px;
  font-size: 16px;
  /* padding: 0 20px; 
  background: #8e1a07;
  background: rgb(14 100 182 / 55%);
  /* margin-left: -200px; */
  /* font-weight:bolder; */
  /* letter-spacing:3px; */
  background-color: #FFF;
}
.ubox a{
    color: #000;
   height: 38px;
  line-height: 38px;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 17px;
  
}
#kinMaxShow2 .kinMaxShow_button {
/*  margin-right: -70px;*/
}