@charset "UTF-8";
body{
    background-color: #f3f2f0;
    background-image: url(../image/bgImg.png);
    animation: bodyAni 10s infinite linear;
}
@keyframes bodyAni{
    0%{
        background-position: 0px 0px;
    }
    100%{
        background-position: 512px 492px;
    }
}
.avatar_block {
    width: 100%;
    max-width: 180px;
}

.avatar {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    animation: avatar_ani 1s infinite ease-in;
    margin-top: 0;
    border-radius: 100%;
    overflow: hidden;
    pointer-events: none;
    background-color: #99403b;
}

.avatar img {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
}

@keyframes avatar_ani {
    0% {
        box-shadow: 0 0 0 2px #99403b;
    }

    50% {
        box-shadow: 0 0 0 5px #99403b;
    }

    100% {
        box-shadow: 0 0 0 2px #99403b;
    }
}

.nick_block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 20px;
}

.nick_en {
    display: flex;
    letter-spacing: 2px;
    font-size: 18px;
    line-height: 1em;
    height: 1em;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
}

.nick_cn {
    display: flex;
    justify-content: center;
    text-align: center;
    margin-top: 2px;
}

.nick_cn img {
    height: 46px;
}

.cols {
    display: flex;
    flex-wrap: wrap;
    margin: 10px;
    margin-top: 0;
}

.col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
    width: calc(50% - 20px);
    border-radius: 10px;
    margin: 10px;
    background-color: rgb(255,255,255,0.382);
    backdrop-filter:blur(5px);
}

.qrcode {
    padding: 10px;
    overflow: hidden;
    max-width: 190px;
    background-color: #ffffff;
    position: relative;
    border-radius: 10px;
}

.qrcode canvas,
.qrcode img {
    display: block;
    max-width: 190px;
    width: 100%;
}

.qricon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.qricon text {
    font-family: "Font Awesome 7 Brands";
    font-size: 30px;
    paint-order: stroke fill;
    stroke: #ffffff;
    stroke-width: 5px;
    fill: #99403b;
    stroke-linecap: round;
}

.info-text-center {
    text-align: center;
    white-space: nowrap;
    letter-spacing: 1px;
}

.info-text-content {
    font-size: 18px;
    margin-top: 2px;
}

.info-text-center .info-text-content {
    font-size: 17px;
    width: 100%;
}

.liveicon {
    display: inline-flex;
    padding: 4px;
    font-size: 12px;
    background: #503A38;
    color: #ffffff;
    border-radius: 5px;
    margin-right: 0px;
    margin-left: -4px;
    transform: skewX(-10deg) scale(0.833333);
}

.copy-data {
    display: inline-block;
    position: relative;
    border: none;
    height: 24px;
    padding: 0 5px;
    font-size: 12px;
    border-radius: 3px;
    top: -2px;
    font-weight: 700;
    background-color: transparent;
    border: solid 2px #503A38;
    color: #503A38;
    cursor: pointer;
}

.copy-data:hover {
    background-color: #503A38;

}

.copy-data:hover span {
    color: #ffffff;
}

.copy-data span {
    display: inline-block;
    transform: scale(0.91666666);
    line-height: 1em;
}

.base_info {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #99403b;
    color: #ffffff;
    margin-top: 10px;
    border-radius: 30px;
    height: 30px;
    padding: 0 10px;
    font-size: 18px;
    width: fit-content;
}

.photos{
    display: flex;
    flex-wrap: wrap;
    margin: 10px;
    width: calc(100% - 20px);
    margin-bottom: 0;
}
.photo{
    position: relative;
    height: 0;
    width: calc(50% - 20px);
    margin: 10px;
    padding-bottom:calc(50% - 20px);
    border-radius: 10px;
    background-color: rgb(255,255,255,0.382);
    backdrop-filter:blur(5px);

}
.photo-image{
    position: absolute;
    left: 20px;
    top: 20px;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    background-size: cover;
    background-position: center center;
    border-radius: 7px;
}
.photo-image.video::after{
    display: flex;
    justify-content: center;
    align-items: center;
    content:'\f04b';
    font-family: 'Font Awesome 7 Free';
    position: absolute;
    left:0;
    top:0;
    width: 100%;
    height: 100%;
    color: #ffffff;
    font-size: 46px;
    background: rgba(0,0,0,0.5);
    border-radius: 7px;
}
@media(max-width:640px) {
    .cols {
        display: flex;
        flex-wrap: nowrap;
        flex-direction: column;
        margin: 10px 0;
        width: 100%;
        max-width: 620px;
        margin-top: 0;
    }

    .col {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 40px 0;
        width: 100%;
        border-radius: 10px;
        margin: 10px 0;
    }
    .photos{
        width: calc(100% + 10px);
    }
    .photo{
        margin: 5px;
        width: calc(50% - 10px);
    }
    .photo-image{
        left: 10px;
        top: 10px;
        width: calc(100% - 20px); height: calc(100% - 20px);
    }
}