*{
    /* margin: 0; */
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    
}
body{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 27px 0 0 0;
    height: 100%;
    /* background-color: rgba(230, 230, 230, 0.944); */
    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%;
    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;
}
column .box {
    display: flex;
    overflow: hidden;
    margin: 20px;
    text-align: center;
}
column .box .z {
    padding-left: 30px;
    width: 55%;
    display: flex;
    flex-direction: column;
    /* background: #ff8e8e; */
} 
column .box .z .z1 {
    width: 220px;
    padding: 25px;
    margin: 20px 50px 60px 45px;
    color: #fff;
    font-size: 35px;
    font-weight: 600;
    background:linear-gradient(90deg,rgba(80, 225, 114, 0.819), rgba(114, 210, 137, 0.748));
    background-size: 600% 600%;
    animation: gradientBG 5s ease infinite;
    border-radius: 30px;
    letter-spacing: 1px;
}
column .box .z .z2 {
    display: flex;
    flex-direction: column;
    padding: 0 0 20px 40px;
    letter-spacing: 1px;
}
column .box .z .z2 img {
    width: 60px;
    margin: 15px 0;
}
column .box .z .z2 p {
    font-size: 30px;
    margin: 0 0 0 35px;
    color: #0098c2;
    font-weight: 600;
}
column .box .z .z2-1 {
    display: flex;
    align-items: center;
}
column .box .z .z2-2 {
    display: flex;
    align-items: center;
}
column .box .z .z2-3 {
    display: flex;
    align-items: center;
}
column .box .z .z2-4 {
    display: flex;
    align-items: center;
}
column .box .y {
    width: 50%;
}
column .box .y img {
    width: 85%;
    border-radius: 60px;
    padding: 20px;
    margin: 15px 0 0 20px;
}
/******************** 尾 ************************/
footer {
    width: 100%;
    margin: 26px 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);
}