.Download {
    max-width: 1920px;
    height: 135px;
    background: #162338;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
}

.Download .left {
    width: 270px;
    height: 100%;
    position: absolute;
    left: 350px;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.Download .left img {
    width: 90px;
    height: 105px;
    border-radius: 5px 5px 5px 5px;
    margin-right: 20px;
}

.Download .left span {
    font-size: 24px;
    font-family: Microsoft YaHei-Regular, Microsoft YaHei;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 28px;
}

.Download .left:hover {
    cursor: pointer;
}

.Download .center {
    width: 240px;
    height: 32px;
    font-size: 24px;
    font-family: Microsoft YaHei-Bold, Microsoft YaHei;
    font-weight: bold;
    color: #FFF36B;
    line-height: 28px;
    position: absolute;
    left: 0;
    top: 51px;
    right: 0;
    margin: auto;
}

.Download .right {
    width: 240px;
    height: 66px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #FFF36B;
    border-radius: 10px 10px 10px 10px;
    position: absolute;
    right: 350px;
    top: 35px;
    font-size: 24px;
    font-family: Microsoft YaHei-Bold, Microsoft YaHei;
    font-weight: bold;
}

.Download .right:hover {
    background-color: #7b7b7b;
    color: #FFFFFF;
    cursor: pointer;
}

.Download .right img {
    width: 31px;
    height: 31px;
    margin-right: 10px;
}

@media screen and (min-width: 1350px) and (max-width:1600px) {
    .Download .right {
        width: calc(240px * 0.8);
        height: calc(66px * 0.8);
        right: calc(350px * 0.8);
        top: calc(35px * 0.8);
        font-size: calc(24px * 0.8);
    }

    .Download .right img {
        width: calc(31px * 0.8);
        height: auto;
        margin-right: 8px;
    }

    .Download .center {
        width: calc(240px * 0.8);
        height: calc(32px * 0.8);
        font-size: calc(24px * 0.8);
        line-height: calc(28px * 0.8);
        top: calc(51px * 0.8);
    }

    .Download .left {
        width: calc(270px * 0.8);
        height: 100%;
        position: absolute;
        left: calc(350px * 0.8);
        top: 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .Download .left img {
        width: calc(90px * 0.8);
        height: calc(105px * 0.8);
        border-radius:  calc(5px * 0.8);
        margin-right: calc(20px * 0.8);
    }

    .Download .left span {
        font-size: calc(24px * 0.8);
        line-height: calc(28px * 0.8);
    }
}