/*字体改了赞的图标位置会变动---苏画*/
* {
    padding: 0px;
    margin: 0px;
    font-family: "Arial", "Microsoft YaHei", "黑体", "宋体", sans-serif;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(125deg, #fdcbf1, #e6dee9, #a1c4fd, #a8edea, #d299c2);
    background-size: cover;
    z-index: -1;

}

.btn-blue {
    font-size: 15px;
    line-height: 40px;
    text-align: center;
    display: block;
    width: 100%;
    height: 40px;
    margin-top: 10px;
    background-color: #a1c4fd;
    border: 2px solid #a1c4fd;
    border-radius: 5px 5px 5px 5px;
    outline: none;
    color: #fff;
    transition: 0.3s;
    transform: translateZ(0);
}

.btn-blue:hover {
    transform: scale(1.01);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

.btn-pink {
    font-size: 15px;
    line-height: 40px;
    text-align: center;
    display: block;
    width: 100%;
    height: 40px;
    margin-top: 10px;
    background-color: #fecfef;
    border: 2px solid #fecfef;
    border-radius: 5px;
    outline: none;
    color: #fff;
    transition: 0.3s;
}

.btn-pink:hover {
    transform: scale(1.01);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

.container {
    border-radius: 10px;
    width: 300px;
    padding: 20px;
    background-color: #fff;
    transition: 0.3s;
    margin: 30px auto;
}

@keyframes rotation {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.title {
    padding: 10px;
    bottom: 0;
    position: absolute;
    text-align: left;
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
}

.top {
    width: 320px;
    height: 100px;
    position: relative;
    margin-top: -10px;
    margin-left: -10px;
    margin-right: -10px;
}

.top > img {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 0 solid #fff;
    border-radius: 10px;
}

a {
    text-decoration: none;
    color: inherit;
}
.pcenter{
    text-align: center;
    margin: 10px auto;
    width: 300px;
    font-size: 13px;
    color: #4b4b4b;
}