* {
    margin: 0;
    padding: 0;
}
.layout-footer {
    a {
        text-decoration: none;
        color: inherit; /* 继承父元素的颜色 */
    }

    .info-list {
        width: 100%;
        height: 140px;
        background: linear-gradient(
            90deg,
            #fffbee 0%,
            #ffffff 49%,
            #fffbee 100%
        );
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;

        .info-item {
            height: 66px;
            display: flex;
            gap: 10px;

            .info-icon {
                width: 24px;
                height: 28px;
                background-color: aqua;
            }

            .info-body {
                .text-title {
                    height: 22px;
                    font-size: 14px;
                    line-height: 22px;
                }

                .text-main {
                    height: 22px;
                    font-size: 12px;
                    line-height: 22px;
                }

                .text-sub {
                    height: 22px;
                    font-size: 12px;
                    color: rgba(0, 0, 0, 0.45);
                    line-height: 22px;
                }
            }
        }
    }

    .about-us {
        height: 40px;
        font-size: 12px;
        width: 100%;
        background: linear-gradient(270deg, #ffd8ad 0%, #fff3d9 100%);
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 50px;
    }

    .copyright {
        height: 30px;
        font-size: 12px;
        width: 100%;
        background: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 50px;
    }
}
