body {
    font-size: 1vw;
}

.Page1 {
    height: 40vh;
    position: relative;
}

.Page1Content {
    width: 40%;
    position: absolute;
    bottom: 20%;
    left: 5%;
    color: #fff;
}

.Page1Content>h1 {
    margin-bottom: 3%;
}

.Page1Content>p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.3vw;
}

.page2 {
    width: 100%;
    padding: 5% 15%;
    box-sizing: border-box;
}

.downloadBox {
    width: 100%;
}

.downloadBox>li {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.fileInfo {
    display: flex;
    align-items: center;
}

.fileInfo>svg {
    margin-right: 20px;
}

.downloadBox>li>a {
    padding: 0.8% 3%;
    border: 1px solid #979797;
    color: #333333;
    border-radius: 5px;
    transition: all .3s ease;
}


.downloadBox>li>a:hover {
    background-color: #195ac2;
    color: #fff;
    font-weight: bold;
}

.fileInfo>svg>path:nth-child(1) {
    transition: all .3s ease;
}

.downloadBox>li:hover>.fileInfo>svg>path:nth-child(1) {
    fill: #0398DA;
}

.fileInfo>span {
    position: relative;
    color: #333333;
}

.fileInfo>span::after {
    content: '';
    display: block;
    width: 0%;
    height: 2px;
    background-color: #333;
    left: 0;
    top: 100%;
    border-radius: 20px;
    transform-origin: left;
    transition: all .8s ease;
}

.downloadBox>li:hover>.fileInfo>span {
    font-weight: bold;
}

.downloadBox>li:hover>.fileInfo>span::after {
    width: 100%;
}

@media (max-width: 1200px) {
    body {
        font-size: 1.5vw;
    }

    .Page1 {
        height: 20vh;
    }

    .Page1Content>p {
        font-size: 1.5vw;
    }

}

@media (max-width: 768px) {
    body {
        font-size: 2vw;
    }

    .Page1Content>p {
        font-size: 2vw;
    }

    .downloadBox>li>a {
        padding: 1.3% 4%;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 3.5vw;
    }

    .Page1Content>p {
        font-size: 4vw;
    }

    .page2{
        padding: 5%;
    }
}