* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Microsoft YaHei", sans-serif;
}
body {
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 20px 0;
}
.logo {
    font-size: 24px;
    font-weight: bold;
    /* 鲜花主题主色：暖粉色系 */
    color: #e63946;
}
nav {
    margin-top: 20px;
}
nav ul {
    display: flex;
    list-style: none;
}
nav ul li {
    margin-right: 20px;
}
nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}
nav ul li a:hover {
    /* hover适配主色 */
    color: #e63946;
}
.banner {
    /* 鲜花主题banner背景色 */
    /*background-color: #e63946;*/
    color: white;
    padding: 160px 0;
    text-align: center;
    margin-bottom: 40px;
    /* 替换为鲜花banner图（建议实际替换为鲜花背景图） */
    background-image: url('../images/flower-banner.png');
    background-size: cover;
    background-position: center;
}
.banner h1 {
    font-size: 36px;
    margin-bottom: 20px;
}
.section {
    background-color: white;
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.section h2 {
    /* 标题色适配主色 */
    color: #e63946;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}
.products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}
.product {
    border: 1px solid #eee;
    padding: 15px;
    border-radius: 5px;
    transition: transform 0.3s;
    text-align: center;
}
.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.product img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 3px;
    margin-bottom: 10px;
}
.btn {
    display: inline-block;
    /* 按钮色适配主色 */
    background-color: #e63946;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 10px;
    transition: background-color 0.3s;
}
.btn:hover {
    /* 按钮hover深色 */
    background-color: #c1121f;
}
.contact-info {
    margin-top: 20px;
}
.contact-info p {
    margin-bottom: 10px;
}
.contact-form {
    margin-top: 20px;
}
.form-group {
    margin-bottom: 15px;
}
.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}
.form-group textarea {
    resize: vertical;
}
footer {
    background-color: #333;
    color: white;
    padding: 30px 0;
    text-align: center;
    margin-top: 50px;
}