* {
    margin: 0px;
    padding: 0px;
    font-family: '隶书', SimSun, sans-serif;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: rgb(237, 237, 237);
}

.header {
    display: flex;
    align-items: center;
    width: 100%;
    height: 80px;
    background: linear-gradient(45deg, rgb(191, 255, 146), rgb(161, 225, 151), rgb(132, 194, 155));
}

header {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
    align-items: center;
    width: 100%;
    background: linear-gradient(45deg, rgba(191, 255, 146, 0.5), rgba(161, 225, 151, 0.5), rgba(132, 194, 155, 0.5));
}

header img {
    height: 80px;
    float: left;
}

nav {
    height: 80px;
    overflow: hidden;
}

nav li a {
    text-decoration: none;
    color: black;
}

nav li:hover>a {
    text-decoration: underline;
}

nav li:hover>ul {
    display: block;
}

nav li {
    list-style: none;
    float: left;
    line-height: 80px;
    min-width: 200px;
    text-align: center;
    font-family: '隶书', SimSun, sans-serif;
    font-size: 25px;
}

nav li:hover {
    background-color: rgb(161, 225, 151);
}

.search {
    position: absolute;
    display: flex;
    align-items: center;
    right: 80px;
    height: 35px;
}

.search input {
    height: 35px;
    width: 250px;
    font-size: 25px;
    font-family: '隶书', SimSun, sans-serif;
    border-radius: 5px 0px 0px 5px;
    border: none;
}

.search:hover {
    filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.5));
}

input:focus {
    outline: none;
}

.getSearch {
    width: 45px;
    height: 35px;
    border: 1px solid #90EE90;
    background-color: white;
    display: flex;
    align-items: center;
    border-radius: 0px 5px 5px 0px;
    border: none;
    float: right;
    cursor: pointer
}

svg {
    width: 20px;
    margin: 0 auto;
}
form input{
    height: 30px;
}
.swiper {
    width: 98%;
    height: 450px;
    margin: 10px auto;
    margin-bottom: 0px;
    border: 6px solid rgba(1, 93, 58, 0.5);
    border-radius: 20px;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
}

.main {
    /* height: 3000px; */
    width: 95%;
    margin: 50px auto;
    padding: 20px;
    background-color: white;
    border-radius: 20px;
    border: 6px solid rgba(1, 93, 58, 0.5);
}

h2 {
    font-size: 40px;
    border-radius: 20px;
    color: rgb(1, 93, 58);
    border: 4px solid rgba(1, 93, 58, 0.5);
    float: left;
}

.paragraph {
    margin: 15px;
}

p {
    font-size: 25px;
}

.content {
    margin: 5px auto;
    /* background-color: #98FB98; */
    display: flex;
    align-items: center;
    border-radius: 20px;
    flex-wrap: wrap;
    border: 4px solid rgba(1, 93, 58, 0.5);

}

.content img {
    height: 350px;
    width: 300px;
    margin: 20px auto;
    transition: transform 0.8s ease;
    transform: scale(1);
    border-radius: 18px;
}

.content img:hover {
    transform: scale(1.2);
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.3);
    z-index: 1;
}

footer {
    width: 98%;
    margin: 10px auto;
    margin-bottom: 0px;
    border: 6px solid rgba(1, 93, 58, 0.5);
    background-color: white;
    border-radius: 20px;
}

footer li {
    list-style: none;
    line-height: 30px;
    font-size: 25px;
}

footer li a {
    color: black;
    text-decoration: none;
}

footer ul {
    display: inline-grid;
    height: 260px;
    margin: 0px 50px;
}

footer img {
    width: 240px;
    height: 260px;
}

footer li:hover>a {
    text-decoration: underline;
}
@media (max-width:1480px) {
    .search {display: none;}
}
@media (max-width:1121px) {
    nav {display: none;};
    .swiper1{height: auto;}
}
.menubox {
    display: none;
}