@keyframes border-circle-an {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.robot-thumbnail-page {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
}

.robot-thumbnail-container {
    margin: 0 auto;
    position: absolute;
    top: 0;
    z-index: 3;
    pointer-events: none;
    user-select: none;
    /* border: 1px solid red; */
}

.robot-thumbnail-container .img-container {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 0.73rem;
    height: 0.74rem;
    background: url("../assets/robot-bg.png") no-repeat center center/100% 100%;
    position: absolute;
    top: 0.6rem;
    right: 0.2rem;
    cursor: pointer;
    pointer-events: all;
}
.robot-thumbnail-container .ai-iframe-page-container {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    /* border: 2px solid white; */
    pointer-events: all;
}
.robot-thumbnail-container .img-container::before {
    content: '';
    width: 0.91rem;
    height: 0.93rem;
    background: url("../assets/robot-circle-border.png") no-repeat center center/100% 100%;
    position: absolute;
    animation: border-circle-an 10s linear infinite;
}

.robot-thumbnail-container .img-container:hover {
    filter: brightness(0.95);
}

.robot-thumbnail-container .img-container .robot-img {
    height: 0.5rem;
    position: relative;
}