@charset "utf-8";
/* CSS Document */

 .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%;
        }
        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;
        }
        .note {
            background-color: #e6f7ff;
            padding: 15px;
            border-radius: 6px;
            margin: 15px 0;
            font-size: 14px;
        }
        .note ul {
            padding-left: 18px;
        }

		.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;
        }
        .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;
            }
        }