*{
    /* margin: 0; */
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    
}
body{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin: 27px 0 0 0;
    height: 100%;
    background: linear-gradient(45deg,rgba(148, 233, 142, 0.459),rgba(171, 206, 189, 0.625),rgba(205, 255, 184, 0.94));
    background-size: 600% 600%;
    animation: gradientBG 8s ease infinite;
}
@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
/* 背景灯泡字 */
.dpz{
    height: 80px;
    position: relative;
    top: 37px;
    font: 400 40px '';
    color: #ffffff;
    /* 鼠标经过有小手样式pointer */
    /* 鼠标经过有箭头样式default */
    cursor: default;
}
.dpz span{
    /* 过渡属性 */
    transition: .5s;
    transition-delay: calc(var(--i)*.1s);
}
.dpz:hover span{
    color: #fff;
    /* x轴 y轴 模糊半径 颜色 */
    text-shadow: 0 0 30px #fffcab,
        0 0 10px #f3ffdc;
}
/* 导航栏 */
nav{
    width: 98%;
    display: flex;
    justify-content: space-between;
    /* 让文字垂直居中 */
    align-items: center;
    padding: 10px 0 10px 0;
    background-image: linear-gradient(45deg, rgb(250, 250, 250), rgba(219, 255, 204, 0.868), rgba(100, 234, 131, 0.359), rgba(107, 206, 130, 0.792));
    box-shadow: 0 0px 45px rgba(107, 206, 130, 0.828),
        0 0px 10px rgba(56, 232, 97, 0.444),
        0 0 0 27px #fff;
    border-radius: 60px;
}
.logo{
    overflow: hidden;
    white-space: nowrap;
    width: 23%;
    margin-left: 11%;
}
.logo img{
    width: 90%;
    padding-right: 10%;
}
.list {
    margin-right: 2%;
}
.nav-list{
    width: 53%;
    display: flex;
}
.nav-items{
    font-size: 30px;
    margin-left: 20px;
}
.nav-items a {
    display: inline-block;
    height: 100%;
    padding: 32px 25px;
    color: #276900;
    text-shadow: 0 0 10px #ffffff,
    0 0 80px #ffffff;
    font-weight: 700;
    transition:.6s;
    overflow: hidden;
    white-space: nowrap;
}
.nav-items a:hover {
    color: #ffffff;
    text-shadow: 0 0 30px #ede964,
        0 0 60px #f5f06c;
}
/******************** 栏目 ********************/
column {
    width: 97%;
    height: 590px;
    margin: 55px 0 0 0;
    background-color: #ffffff;
    border-radius: 60px;
    box-shadow: 0 0px 45px rgba(107, 206, 130, 0.828),
    0 0px 10px rgba(56, 232, 97, 0.444),
    0 0 0 27px #fff;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 60px 50px 60px 50px;
    flex-wrap: nowrap;
}
column .card {
    position: relative;
    max-width: 410px;
    height: 300px;
    background:linear-gradient(45deg,rgba(50, 199, 137, 0.833),rgba(89, 188, 147, 0.725));
    background-size: 600% 600%;
    animation: gradientBG 5s ease infinite;
    margin: 40px 60px 0 40px;
    padding: 20px 15px;
    border-radius: 45px;
    flex-direction: column;
    /* box-shadow: 0 5px 30px rgba(107, 206, 130, 0.828),
        0 5px 10px rgba(56, 232, 97, 0.444),
        0 0 0 20px #fff; */
    transition: 0.4s ease-in-out;
}
column .card:hover{
    height: 475px;
}
column .card .img {
    position: relative;
    width: 260px;
    height: 260px;
    top: -90px;
    left: 60px;
    z-index: 1;
}
column .card .img img {
    width: 100%;
    border-radius: 45px;
    box-shadow: 0 0 20px #fff;
}
column .card .content {
    position: relative;
    margin-top: -140px;
    padding: 10px 14px;
    /* text-align: center; */
    color: #fff;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s ease-in-out;
    letter-spacing: 1px;
}
column .card .content h2{
    text-align: center;
}
column .card .content p {
    font-size: 20px;
    font-weight: 500;

}
column .card:hover .content {
    visibility: visible;
    opacity: 1;
    margin-top: -110px;
    transition-delay: 0.3s;
    padding: 10px 8px;
}
/******************** 尾 ************************/
footer {
    width: 100%;
    margin: 30px 0 0 0;
    padding: 20px;
    /* background-color: rgba(200, 200, 200, 0.944); */
    display: flex;
    flex-direction: column;
    align-items: center;
}
.w1{
    display: flex;
    justify-content: center;
    flex-direction: row;
    width: 100%;
    font-size: 15px;
    text-align: center;
    margin-bottom: 15px;
}
.w1 p {
    margin: 0;
}
.w1 img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}
.w01 {
    display: flex;
    margin-left: 30px;
}
.w02 {
    display: flex;
    margin-left: 30px;
}
.w03 {
    display: flex;
    margin-left: 30px;
}
.w2{
    font-size: 10px;
}
.w2 a {
    color: rgba(170, 170, 170, 0.944);
}