@charset "utf-8";
/* CSS Document */
 * {
            
         
            font-family: "Microsoft Yahei", sans-serif;
            transition: all 0.3s ease; /* 全局过渡动画，保证hover效果流畅 */
        }
 .container-db {
            
            margin: 0 auto;
            width: 70%;
			 height: auto;
        }
        header-db {
           
            color: white;
            padding-left: 20px;
            text-align: center;
            border-radius: 8px;
            margin-bottom: 20px;
        }
       header-db  h1 {
            font-size: 22px;
            margin-bottom: 8px;
		    color: #0066cc;
        }
		header-db p{color: black;}
        .subtitle {
            font-size: 14px;
            opacity: 0.95;
        }
        .section {
            background-color: white;
            padding: 20px 15px;
            border-radius: 8px;
            margin-bottom: 20px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            width: 100%;
        }
		.section li {
            margin-bottom: 10px;
            padding-left: 20px;
            position: relative;
            padding: 8px 12px 8px 20px;
            border-radius: 4px;
            cursor: pointer;
        }

	.section li:hover {
            background-color: #fef2f2;
            color: #d92121;
            transform: translateX(3px); /* 轻微右移 */
        }
        h2 {
            color: #0066cc;
            font-size: 18px;
            margin-bottom: 15px;
            border-left: 4px solid #0066cc;
            padding-left: 10px;
        }
        /* 自适应表格 */
        .table-wrap {
            width: 100%;
            overflow-x: auto;
            margin: 15px 0;
        }
        .price-table {
            width: 100%;
            border-collapse: collapse;
            min-width: 300px;
        }
        .price-table th, .price-table td {
            border: 1px solid #eee;
            padding: 10px 8px;
            text-align: center;
            font-size: 14px;
        }
        .price-table th {
            background-color: #e6f7ff;
            color: #0066cc;
        }
 	.price-table tr:nth-child(even) {
            background-color: #f9f9f9;
        }
        .note {
            background-color: #fff;
            padding: 15px;
            border-radius: 6px;
            margin: 15px 0;
            font-size: 14px;
			list-style: none;
        }
        .note ul {
            padding-left: 18px;
        }


       .note li {
            margin-bottom: 10px;
            padding-left: 20px;
            position: relative;
            padding: 8px 12px 8px 20px;
            border-radius: 4px;
            cursor: pointer;
        }
        .note li::before {
            content: "★";
            color: #d92121;
            position: absolute;
            left: 0;
        }
        .note li:hover {
            background-color: #fef2f2;
            color: #d92121;
            transform: translateX(5px); /* 轻微右移 */
        }
		.product-type {
            background: #f8f9fa;
            padding: 10px;
            border-radius: 4px;
            margin: 10px 0;
        }
        .product-type h3 {
            font-size: 15px;
            color: #1f4690;
            margin-bottom: 5px;
        }
        /* 自适应图片 */
        #priceChart {
            width: 100%;
            height: 350px;
            margin: 15px 0;
        }
.analysis-section {
            background-color: #fff;
            padding: 20px;
            border-radius: 8px;
            margin-bottom: 20px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        .analysis-section h2 {
            color: #333;
            font-size: 22px;
            margin-bottom: 15px;
            border-left: 4px solid #d92121;
            padding-left: 10px;
        }
        .analysis-content {
            line-height: 1.8;
            color: #444;
        }
        .analysis-content h3 {
            font-size: 18px;
            margin: 15px 0 8px;
            color: #d92121;
        }
	.analysis-content p:hover {
            background-color: #fef2f2;
            color: #d92121;
            transform: scale(1.01); /* 轻微放大 */
        }
	.analysis-content ul li:hover {
            background-color: #fef2f2;
            color: #d92121;
            transform: translateX(3px);
        }
        .call-btn {
            display: inline-block;
            background-color: #0066cc;
            color: white;
            padding: 12px 25px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: bold;
            font-size: 16px;
            margin-top: 10px;
            text-align: center;
            width: 100%;
            max-width: 300px;
        }
        .call-btn:hover {
            background-color: black;
        }
        .highlight {
            color: #ff5722;
            font-weight: bold;
        }
        ul {
            padding-left: 20px;
            font-size: 14px;
        }
        p {
            font-size: 14px;
            margin-bottom: 10px;
        }
        /* 小屏幕优化 */
        @media (max-width: 768px) {
            h1 {
                font-size: 20px;
            }
            h2 {
                font-size: 17px;
            }
            .section {
                padding: 15px 12px;
            }
			
            .price-section, .note-section, .chart-section, .analysis-section {
                padding: 15px;
            }
            .note-list li, .analysis-content {
                font-size: 14px;
            }
        }