/* 小付同学 · www.yikai520.cn */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    width: 100%;
    height: 100%;
}

body {
    position: relative;
    width: 100%;
    height: 100%;
}

#bg {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: -10;
    background: url(http://oss.yikai520.cn/images/lyy.jpg) no-repeat center;
    background-size: cover;
}

.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 500px;
    background-color: rgba(255, 255, 255, .1);
    border-radius: 30px;
    box-shadow: 0 0 30px rgb(84, 139, 194);
    backdrop-filter: blur(10px);
}

@media (max-width: 1366px) {
    .content {
        width: 350px;
        height: 570px;
    }

    .content .wechat h3 {
        font-size: 32px;
    }
}

@media (max-width: 375px) {
    .content {
        width: 260px;
        height: 400px;
    }

    .content .ewm img {
        width: 60%;
    }

    .content .wechat h3 {
        font-size: 24px;
    }
}

.wx_photo_img {
    position: relative;
    display: block;
    margin: auto;
    width: 30%;
    border-radius: 50%;
    margin-top: 25px;
    animation: wxphoto 5s linear infinite;
    transition: .5s;
}

.wx_photo_img:hover {
    cursor: url(http://oss.yikai520.cn/images/cursor_1.png), pointer;
    box-shadow: 0 0 60px rgb(0, 170, 255)
}

@keyframes wxphoto {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.wechat {
    margin-top: 20px;
}

.wechat h3 {
    font-family: 'dc';
    font-size: 26px;
    white-space: nowrap;
    color: #fff;
    text-align: center;
}

.ewm img {
    width: 80%;
    display: block;
    margin: auto;
    margin-top: 20px;
    transition: .5s;
}

.ewm img:hover {
    cursor: url(http://oss.yikai520.cn/images/cursor_1.png), pointer;
    transform: scale(1.05);
}

.wxid {
    text-align: center;
    color: #fff;
    font-family: 'dc';
    font-size: 22px;
}

.dibu {
    position: absolute;
    top: 90%;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 20px;
    text-align: center;
    white-space: nowrap;
    color: #372f69;
    font-family: 'gugi';
    font-size: 14px;
}

.dibu a {
    color: #372f69;
    text-decoration: none;
    transition: .3s;
}
.dibu a:hover{
    color: #a6ffa6;
    cursor: url(http://oss.yikai520.cn/images/cursor_1.png), pointer;
}