/* 头部样式 */
.header-wrapper {
    width: 100%;
    background: rgba(255, 255, 255, 1);
    border-bottom: 1px solid rgba(217, 217, 217, 1);
}

.header {
    max-width: 1440px;
    margin: 0 auto;
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-right: 40px;
    cursor: pointer;
}
.logo img {
    height: 42px;
    width: auto;
    cursor: pointer;
}

.contact {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 19px;
    color: rgba(56, 56, 56, 1);
    text-align: left;
    vertical-align: top;
}

/* 底部样式 fixed absolute*/
.footer {
	position: fixed;
	bottom: 0;
    width: 100%;
    text-align: center;
    color: #272c3d;
    font-size: 13px;
    font-weight: 400;
    line-height: 45px;
    z-index: 100;
    background: #f4f7fc;
}