body{
    margin: 0;
    padding: 0;
    height: 2700px;
    overflow: auto;
    background-color: blanchedalmond;
}
a {
    color: inherit;
    text-decoration: none;
}

.nav{
    display: flex;
    align-items: center;
    width: 100%;
    height: 70px;
    background-color: darkgreen;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}
.dot{
    color: orange;
}
.logo{
    padding: 0 50px;
    line-height: 70px;
    color: aliceblue;
    font-size: 26px;
    font-weight: 700;
    text-shadow: 0 2px 5px rgba(0,0,0,0.3);
}
.nav_font{
    text-shadow:0 2px 5px rgba(0,0,0,0.3) ;
    width: 70px;
    height: 50px;
    color: aliceblue;
    font-size: 16px;
    text-decoration: none;
    padding: 0 15px;
    line-height: 50px;
    border: 1px solid none;
    border-radius: 5px;
    transition-property: all;
    transition-duration: 0.5s;
}
.nav_font1{
    text-shadow:0 2px 5px rgba(0,0,0,0.3) ;
    width: 70px;
    height: 50px;
    background-color: orange;
    color: aliceblue;
    font-size: 16px;
    text-decoration: none;
    padding: 0 15px;
    margin-left: 650px;
    line-height: 50px;
    border: 1px solid none;
    border-radius: 5px;
}
.nav_font:hover{
    background-color: orange;
}
main{
    padding-top: 70px;
}
.banner{
    margin-top: 15px;
    height: 500px;
    width: 100%;
    position: relative;
    background-image:url("../img/图1.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.img_font1{
    font-size: 60px;
    color: white;
    text-shadow:2px 2px 4px rgba(0,0,0,0.5);
}
.img_font2{
    font-size: 30px;
    color: white;
    margin-top: 5px;
    text-shadow:2px 2px 4px rgba(0,0,0,0.5);
}
.intro {
    display: flex;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
}
.intro-img {
    flex: 1;
}
.intro-img img {
    width: 100%;
    border-radius: 10px;
}
.intro-text {
    flex: 1;
}
.intro-text h2 {
    font-size: 28px;
    color: darkgreen;
    margin-bottom: 20px;
}
.intro-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}
.scenic{
    color: darkgreen;
    line-height: 10px;
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    
}

.fufu{
    color: orange;
}
.scenic_font{
    font-size: 15px;
    color: #555;
}
.cards {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
}
.card {
    flex: 1;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    line-height: 20px;
    transition: all 0.3s ease;
}
.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.card h3 {
    padding: 15px;
    color: darkgreen;
}
.card p {
    padding: 0 15px 15px;
    color: #666;
    font-size: 14px;
}
.food{
    color: darkgreen;
    line-height: 10px;
    text-align: center;
    font-size: 28px;
    font-weight: 700;
}
.fufu{
    color: orange;
}
.food_font{
    font-size: 15px;
    color: #555;
}
#footer{
    background: #1B5E20;
    color: white;
    padding: 40px 5%;
    margin-top: 60px;
}
.footer-content{
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}
.footer-section{
    flex: 1;
}
.footer-section h3{
    color: orange;
    margin-bottom: 20px;
    font-size: 18px;
}
.footer-section p,
.footer-section li{
    color: #ccc;
    line-height: 2;
}
.footer-section a{
    color: #ccc;
    text-decoration: none;
}
.footer-section a:hover{
    color: orange;
}
.footer-bottom{
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #2E7D32;
    margin-top: 30px;
    color: #999;
}