  /* 全局样式重置与基础设定 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Noto Serif SC', 'SimSun', serif;
        }

        body {
            font-family: 'Noto Serif SC', serif;
            color: #333;
            line-height: 1.6;
            background-color: #fff8f0;
            margin: 0;
            padding: 0;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /*头部猫咪图片容器 */
         header {
            background-color: #fff;
            padding: 40px 0; 
            text-align: center;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .quote-container {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            padding: 40px 20px;
            text-align: center;
            background-color: white;
            max-width: 800px;
            margin: 40px auto;
            border-radius: 15px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        }

        /* 猫咪图片样式优化 */
        .quote-cat {
            width: clamp(80px, 18vw, 180px);/*动态宽度*/
            height: auto;
            border-radius: 12px;
            box-shadow: 0 6px 18px rgba(0,0,0,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            object-fit: cover;
        }
        .quote-cat:hover {
            transform: scale(1.05);
        }
        
        .main-quote {
            font-family: 'Ma Shan Zheng', cursive;
            font-size: 4rem !important;
            color: #d96c32;
            margin: 20px 0;
            letter-spacing: 3px;
        }
        
        .quote-author {
            font-size: 1.2rem;
            color: #666;
            font-style: italic;
            margin-top: -10px;
            letter-spacing: 1px;
        }

        /* 标题文字容器 */
        .quote-text {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        /* 主体内容区域样式 */
        .content {
            text-align: center;
            padding: 60px 20px;
            background-color: white;
            border-radius: 15px;
            max-width: 1200px;
            margin: 0 auto 60px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        }
        
        .content h2 {
             font-size: 2.2rem;
            font-weight: 900;
            color: #d96c32;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        .content h2::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: #ff7f50;
            border-radius: 3px;
        }
        .content p {
            font-size: 1.1rem;
            color: #555;
            margin-bottom: 30px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }    
        /* Bootstrap 轮播图自定义样式 */
        .carousel-section {
            padding: 80px 0;
            background-color: #fff;
        }
        .carousel-section h2 {
            font-size: 2.2rem;
            font-weight: 900;
            color: #8B4513;
            margin-bottom: 30px;
            text-align: center;
            padding: 20px 0;
            letter-spacing: 2px;
        }
        .carousel-inner {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            position: relative; }
        .carousel-item img {
            height: 500px; 
            object-fit: cover;
            width: 100%;
            cursor: pointer; /* 鼠标悬浮显示指针，提示可点击 */
            transition: transform 0.3s ease;
        }
        .carousel-item img:hover {
            transform: scale(1.02);
        }
        .carousel-caption {
            background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
            bottom: 0;
            left: 0;
            right: 0;
            padding: 30px;
            color: #fff;
            text-align: left;
            z-index: 10;
        }
        .carousel-caption h5 {
            font-size: 1.8rem;
            font-weight: 700;
            color: white;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
            margin-bottom: 10px;
            letter-spacing: 1px;
        }
        .carousel-caption p {
            font-size: 1.1rem;
            color: #f8f8f8;
            text-shadow: 0 1px 3px rgba(0,0,0,0.5);
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.8;
        }
        
        /* 自定义轮播箭头样式 */
        .carousel-control-prev,
        .carousel-control-next {
            width: 5%; 
            opacity: 1; 
            z-index: 20; 
        }
        
        .carousel-control-prev {
            left: -50px; /* 向左移动箭头 */
        }
        .carousel-control-next {
            right: -50px; /* 向右移动箭头 */
        }
        .carousel-control-prev-icon,
        .carousel-control-next-icon {
            width: 50px;
            height: 50px;
            background-color: rgba(0, 0, 0, 0.5);
            border-radius: 50%;
            background-size: 50% 50%;
            transition: all 0.3s ease;
        }
        
        .carousel-control-prev-icon:hover,
        .carousel-control-next-icon:hover {
            background-color: rgba(210, 105, 30, 0.8);
            transform: scale(1.1);
        }
        /* 页脚样式 */
        footer {
            background-color: #fff8f0;
            border-top: 1px solid #ffdab9;
            margin-top: 20px;
        }