/* 微信公众号翻转 */
#flip-wrapper {
    position: relative;
    width: 235px;
    height: 110px;
    z-index: 1;
}

#flip-content {
    width: 100%;
    height: 100%;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    transition: cubic-bezier(0, 0, 0, 1.29) 0.3s;
}

#flip-wrapper:hover #flip-content {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
}
/* 微信公众号前面背景 */
.face {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    background: url(./img/1a6013ca8920250529110458.png) center center no-repeat;
    background-size: 100%;
}
/* 微信公众号翻转后的背景 */
.back.face {
    display: block;
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
    box-sizing: border-box;
    background: url(./img/84e2116e8420250529111226.png) center center no-repeat;
    background-size: 100%;
}


/* 微信公众号背景 */
.card-widget#card-wechat::before {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: url(./img/e17199c92c20250529111325.webp) center center no-repeat;
    content: '';
}

.card-widget#card-wechat {
    background: #57bd6a;
    display: flex;
    justify-content: center;
    align-content: center;
    padding: 0;
    cursor: pointer;
    border: none;
    height: 110px;
}

.card-widget#card-wechat img {
    max-height: 110px;
    object-fit: cover;
}

.friend-link {
    display: flex;
    justify-content: center;
    align-content: right;
}