body {
    margin: 0;
    padding: 0;
}

.header {
    width: 100%;
    height: 110px;
    background: linear-gradient(90deg, rgba(17, 102, 255, 1), rgba(58, 187, 255, 1));
}

.header .header-company {
    position: absolute;
    left: 5%;
    top: 40px;
    bottom: 40px;
    height: 30px;
    line-height: 30px;
    font-size: 30px;
    font-family: PingFang SC;
    font-weight: 500;
    color: rgba(255, 255, 255, 1);
}

.header .header-name {
    position: absolute;
    right: 10%;
    top: 40px;
    bottom: 40px;
    height: 30px;
    line-height: 30px;
    font-size: 30px;
    letter-spacing: 2px;
    font-family: PingFang SC;
    color: rgba(255, 255, 255, 1);
    opacity: 0.8;
}

.content {
    background-image: url(../../../images/0.png);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    height: calc(100vh - 220px);
}

.content .content-image {
    position: relative;
    float: left;
    width: 33%;
    height: 100%;
}

.content .content-image img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
}

.footer {
    width: 100%;
    height: 110px;
    background: rgba(3, 16, 41, 1);
}

.footer .footer-text {
    float: left;
    width: 33%;
    padding-top: 45px;
    height: 20px;
    line-height: 20px;
    font-size: 20px;
    font-family: PingFang SC;
    font-weight: 500;
    color: rgba(255, 255, 255, 1);
    opacity: 0.6;
    text-align: center;
}