#header {
    top: 0;
    background-color: #fff;
}

#header ul li .link {
    color: #333;
}

#footer {
    height: auto;
}

#footer .footer_content {
    top: 40%;
    height: 60vh;
}

.contactBg {
    position: relative;
    margin-top: 80px;
    width: 100%;
    height: 400px;
}


.contactBg::after {
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: rgba(0, 0, 0, .2);
}

.contactBg img {
    display: block;
    width: 100%;
    height: inherit;
    object-fit: cover;
}

.contactBg span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    color: #FFF;
    font-size: 40px;
    letter-spacing: 2px;
    text-align: center;
    font-weight: 700;
    z-index: 2;
    user-select: none;
}

.type {
    margin: 30px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.type li {
    width: 140px;
    height: 40px;
    text-align: center;
    background-color: #FFF;
    color: #333;
    line-height: 40px;
    border: 1px solid #999;
    border-right: none;
    cursor: pointer;
    font-size: 14px;
}

.type li:last-child {
    border-right: 1px solid #999;
}

.type .active {
    background-color: #2057C7;
    color: #FFF;
}

.type li:hover {
    background-color: #2057C7;
    color: #FFF;
}

.mine {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mine li {
    margin: 0 20px;
    padding: 6px 12px;
    color: #333;
    font-size: 15px;
    border-bottom: 2px solid #d7d7d7;
    cursor: pointer;
    transition: all .3s ease;
}

.mine .active {
    color: #2057C7;
    border-bottom: 2px solid #2057C7;
}

.mine li:hover {
    color: #2057C7;
    border-bottom: 2px solid #2057C7;
}

.project {
    padding: 10px;
    margin: 20px auto;
    width: calc(100% - 600px);
    display: flex;
    align-items: center;
    box-shadow: 0 0 6px #d7d7d7;
}

.project img {
    margin-right: 60px;
    min-width: 600px;
    width: 600px;
    height: 350px;
    border-radius: 2px;
    object-fit: cover;
}

.project .info {
    display: flex;
    flex-direction: column;
}

.project .info .project-type {
    color: #2057C7;
    font-size: 14px;
}

.project .info .title {
    padding: 8px 0;
    font-weight: 500;
    font-size: 17px;
    color: #333;
}

.project .info .desc {
    color: #666;
    line-height: 24px;
    font-size: 13px;
}

.project .info a {
    display: block;
    margin-top: 20px;
    width: 120px;
    height: 36px;
    border: 1px solid #999;
    color: #999;
    text-align: center;
    line-height: 36px;
    font-size: 13px;
    border-radius: 25px;
    cursor: pointer;
}

.project .info a:hover {
    color: #2057C7;
    border: 1px solid #2057C7;
}