#guestbook .guestbook_content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

#guestbook .title {
    /* background: #eee; */
    padding: 10px 10px;
    font-size: 16px;
    font-weight: 600;
    color: #626262;
}

#guestbook .title .p1 {
    font-family: Source Han Serif CN;
    font-weight: bold;
    font-size: 33px;
    color: #040404;
    line-height: 1;
}

#guestbook .title .p2 {
    font-family: Source Han Serif CN;
    font-weight: bold;
    font-size: 20px;
    color: #040404;
    line-height: 1;
}

#guestbook .title .left {
    width: 30%;
}

#guestbook .title .right {
    width: 65%;
}

#guestbook .title b {
    font-size: var(--title);
    color: var(--dataColor);
    font-weight: bold;
    display: block;
    margin-bottom: 20px;
}

#guestbook .title span {
    font-size: var(--subTitle);
    color: #555;
    font-weight: bold;
    display: block;

}

#guestbook .lianxi {
    width: 45%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 25px;

}

#guestbook .lianxi li {
    display: flex;
    justify-content: flex-start;
    /* flex-direction: column; */
    align-items: center;
    /* width: calc(25% - 20px); */
    /* text-align: center; */
    color: #666;
    line-height: 160%;
    /* padding: 40px; */
    font-family: '微软雅黑';

    transition: 0.5s;
    box-sizing: border-box;
}

#guestbook .lianxi li img {
    width: 50px;
    height: 50px;
    margin-right: 15px;
}

#guestbook .lianxi li:hover b {

    transform: rotateY(360deg);
    transition: 0.5s;
}

#guestbook .lianxi li .iconfont {
    font-size: 40px;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    font-weight: normal;
}

#guestbook .lianxi li:nth-child(1) .iconfont {
    background: #A96ECA;
}

#guestbook .lianxi li:nth-child(2) .iconfont {
    background: #E56D6E;
}

#guestbook .lianxi li:nth-child(3) .iconfont {
    background: #5DBDC9;
}

#guestbook .lianxi li:nth-child(4) .iconfont {
    background: #084b9a;
}

#guestbook .lianxi li i {
    display: block;
    font-style: normal;
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: 23px;
    color: #040404;
}

#guestbook .lianxi li span {
    font-size: 12px;
    color: #555;
    line-height: 30px;
    /*width: calc(70% - 20px);*/
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /*-webkit-box-orient: vertical;*/
    /*overflow: hidden;*/
}

#guestbook .flex {
    display: flex;
    justify-content: space-between;
    margin-top: 5%;

}

#guestbook .map {
    width: 49%;
   
}

#guestbook form {
    width: 49%;
    padding: 20px;
    background: #F0F0F0;
    box-sizing: border-box;
}

#guestbook form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

#guestbook form .home-title {
    text-align: left;
}

#guestbook form .home-title p {
    margin: 0;
}

#guestbook form .home-title p:after {
    left: 0;
    transform: none;
}

#guestbook form input[type="text"] {
    width: calc(34% - 10px);
    height: 40px;
    border: 1px solid #eee;
    border-radius: 5px;
    padding-left: 20px;
    box-sizing: border-box;
    margin-bottom: 20px;
}

#guestbook form textarea {
    width: 100%;
    border: 1px solid #eee;
    border-radius: 5px;
    line-height: 2;
    padding-left: 20px;
    box-sizing: border-box;
    margin-bottom: 20px;
}

#guestbook form input[type="submit"] {
    width: 100%;
    border: 1px solid #eee;
    border-radius: 5px;
    text-align: center;
    background: var(--dataColor);
    color: #fff;
    padding: 10px 0;
}
div.info-top {
    position: relative;
    background: none repeat scroll 0 0 #F9F9F9;
    border-bottom: 1px solid #CCC;
    border-radius: 5px 5px 0 0;
}
div.info-top div {
    display: inline-block;
    color: var(--dataColor);
    font-size: 18px;
    font-weight: bold;
    line-height: 31px;
    padding: 0 10px;
}
div.info-top img {
    position: absolute;
    top: 10px;
    right: 10px;
    transition-duration: 0.25s;
}
div.info-middle {
    font-size: 15px;
    padding: 10px 6px;
    line-height: 20px;
}
div.info-bottom {
    height: 0px;
    width: 100%;
    clear: both;
    text-align: center;
}
@media (max-width:980px) {
     #guestbook .flex {
        flex-direction: column;
    }
     #guestbook .map {
        width: 100%;
        height: 300px;
        margin-bottom: 15px;
    }
     #guestbook form {
        width: 100%;
    }
     #guestbook .lianxi {
        margin: 20px 0;
    }

    #guestbook .lianxi li {
        width: 100%;
        margin-bottom: 10px;
    }
    #guestbook .lianxi {
        width: 100%;
    }


}
@media (max-width:600px) {
    #guestbook form input[type="text"] {
        width: calc(100% - 2px);
        height: 40px;
        border: 1px solid #eee;
        border-radius: 5px;
        padding-left: 20px;
        box-sizing: border-box;
        margin-bottom: 20px;
    }

    #guestbook .title .p1 {
        font-size: 25px;
    }

    #guestbook .title .p2 {
        font-size: 18px;
    }

    #guestbook .lianxi li img {
        width: 40px;
        height: 40px;
        margin-right: 10px;
    }

    #guestbook .lianxi li i {
        font-size: 18px;
    }
    #guestbook{
        padding-top: 0;
    }
}