html,body {
    height: 100%;
    padding: 0;
    margin: 0;
}
.container-result,.container-result * {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
.container-result {
    width: 100%;
    height: 100%;
    position: relative;
}
.container-result .content-result {
    text-align: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}
@media screen and (max-width: 750px) {
    .content-result .result-img {
        width: 1.8rem;
        height: 1.6rem;
        margin: 0 auto 0.3rem;
    }
    .content-result .result1 {
        background: url("./image/result1.png") no-repeat center;
        background-size: 100% 100%;
    }
    .content-result .result2 {
        background: url("./image/result2.png") no-repeat center;
        background-size: 100% 100%;
    }
    .result-title {
        font-size: 0.44rem;
        color: #333333;
        margin-bottom: 0.18rem;
    }
    .result-remark {
        font-size: 0.28rem;
        color: #707070;
    }
}

@media screen and (min-width: 751px) {
    .content-result .result-img {
        width: 180px;
        height: 160px;
        margin: 0 auto 20px;
    }
    .content-result .result1 {
        background: url("./image/result1.png") no-repeat center;
        background-size: 100% 100%;
    }
    .content-result .result2 {
        background: url("./image/result2.png") no-repeat center;
        background-size: 100% 100%;
    }
    .result-title {
        font-size: 36px;
        color: #333333;
        margin-bottom: 18px;
    }
    .result-remark {
        font-size: 20px;
        color: #707070;
    }
}