.interaction {
    max-width: 100%;
    position: fixed;
    bottom: 0px;
    box-shadow: 0px -2px 4px 2px #8883;
    background-color: white;
    border-radius: 0px;
    margin-left: -8px;
    padding: 4px 2px;
}

.interaction-nav {
    max-width: var(--max-element-width);
    display: flex;
    margin: auto
}

.interaction button {
    background-color: transparent;
    font-size: 32px;
    border: none;
    width: fit-content;
    flex: 1;
    font-size: min(3.6vw, 24px);
    /* pointer-events: none; */
}

.interaction button:active,
.interaction button:hover,
.interaction button:focus {
    background-color: transparent !important;
}



.interaction button svg {
    width: max(4vw, 30px);
    height: max(4vw, 30px);
    max-width: 40px;
    max-height: 40px;
}

.interaction button span {
    cursor: pointer;
}

.feedback-section,
.share-section,
.feedback-success-section,
.wait-section,.error-section {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    text-align: center;
    max-width: 100%;
    margin-left: -8px;
    background-color: #888c;
    display: none;
}


.feedback-div,
.share-div,
.feedback-success-div,
.wait-div,.error-div {
    background-color: white;
    width: min(80vw, 500px);
    max-width: 100%;
    max-height: 90vh;
    margin: 0 auto;
    text-align: left;
    padding: 12px;
    border-radius: 6px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
    font-size: 24px;
}

#your-name,
textarea,
#submit-feedback,
#cancle-feedback,
#close-share,
#captchar-input {
    font-size: 20px;
    margin: 10px;
}


textarea {
    min-height: 200px;
}

.feedback-div p {
    font-size: 12px;
    margin-left: 10px;
    margin-bottom: -6px;
}

#cancle-feedback {
    float: right;
}

.share-div h1 {
    text-align: center;
    background-color: #8883;
    border-radius: 1000px;
    margin: 10px 20px;
    padding: 8px;
    font-size: min(36px, 5.5vw);
}

.share-div,
.feedback-success-div,.wait-div,.error-div {
    text-align: center;
}

.share-div img {
    max-width: 100%;
    max-height: 60vh;
    box-shadow: 2px 2px 4px 4px #8883;
}

#captchar-input {
    width: 80px;
    line-height: 32px;
    margin-top: 0;
}

.feedback-success-div svg {
    width: 30vmin;
    height: 30vmin;
}

#hide-success,#reinput {
    background-color: #2F88FF;
    border: none;
    width: 180px;
    border-radius: 8px;
    height: 36px;
    line-height: 36px;
    color: white;
    margin: 20px 0;
    font-size: 28px;
}

/* 示例：创建一个简单的旋转动画 */
@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(-720deg);
    }
}

#wait-anim {
    width: 10vmin;
    height: 10vmin;
    margin: 30px;
    animation: rotate 3s linear infinite;
}