﻿/*头像*/
.uuidbox .uphoto {
    max-height: 50px;
    border-radius: 6px;
}

/*透明*/
.uuidbox .card, .uuidbox input {
    background-color: rgba(255, 255, 255, 0.66);
}

/*卡片头部*/
.uuidbox .card-header {
    padding: .2rem .5rem;
}
/*卡片主体*/
.uuidbox .card-body {
    padding: .3rem;
}

    .uuidbox .card-body a {
        float: left;
        border-radius: 6px;
        white-space: nowrap;
        padding: .4rem .8rem;
        text-decoration: none;
        border: 3px solid transparent;
    }

        .uuidbox .card-body a:hover {
            border-color: orange;
        }

        .uuidbox .card-body a svg {
            height: 18px;
            min-width: 18px;
            max-width: 30px;
            border-radius: 3px;
            display: inline-block;
        }
/*静默搜索*/
.uuidjump {
    position: fixed;
    top: 2%;
    width: 90%;
    max-width: 500px;
    border-radius: 6px;
    border: 1px solid #d6efcc;
    box-shadow: 0px 2px 6px 0px;
    background-color: rgba(255, 255, 255, 0.9);
}

    .uuidjump > div {
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    .uuidjump ul {
        margin: 0;
        padding: 0;
        overflow: hidden;
        border-top: 1px solid #ddd;
    }

        .uuidjump ul li {
            width: 100%;
            color: #666;
            cursor: pointer;
            list-style: none;
            border-bottom: 1px solid #ddd;
        }

            .uuidjump ul li:hover {
                background-color: #f3e6d5;
            }

            .uuidjump ul li.active {
                font-weight: 600;
                background-color: #fbe1c0;
            }

            .uuidjump ul li div {
                width: 40%;
                overflow: hidden;
                padding: 0 15px;
                white-space: nowrap;
                display: inline-block;
                text-overflow: ellipsis;
            }

                .uuidjump ul li div:first-child {
                    width: 59%;
                }

                .uuidjump ul li div img {
                    height: 18px;
                    max-width: 30px;
                    margin-right: 8px;
                    text-align: center;
                    border-radius: 3px;
                }


/*fork*/
.uuidbox .card-fork {
    float: left;
    overflow: hidden;
    text-align: center;
    white-space: nowrap;
    display: inline-block;
    text-overflow: ellipsis;
    margin: 0 0 3em 4em;
}

    .uuidbox .card-fork img {
        margin: 5px;
        width: 100px;
        height: 100px;
        border-radius: 50%;
    }

        .uuidbox .card-fork img:hover {
            animation: myrotate 5s infinite linear;
        }


/*旋转*/
@keyframes myrotate {
    from {
        transform: rotate(0deg);
    }

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