.pixiv_no1_loader {
    margin: 0 auto;
    width: 100px;
    height: 100px;
    z-index: 99999;
}

.pixiv_no1_loader-inner {
    height: 60px;
    position: absolute;
    width: 100px;
}

.pixiv_no1_loader-line-wrap {
    animation:
        pixiv_no1-spin 2000ms cubic-bezier(.175, .885, .32, 1.275) infinite;
    box-sizing: border-box;
    height: 50px;
    left: 0;
    overflow: hidden;
    position: absolute;
    top: 0;
    transform-origin: 50% 100%;
    width: 100px;
}

.pixiv_no1_loader-line {
    border: 4px solid transparent;
    border-radius: 100%;
    box-sizing: border-box;
    height: 100px;
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    top: 0;
    width: 100px;
}

.pixiv_no1_loader-line-wrap:nth-child(1) {
    animation-delay: -50ms;
}

.pixiv_no1_loader-line-wrap:nth-child(2) {
    animation-delay: -100ms;
}

.pixiv_no1_loader-line-wrap:nth-child(3) {
    animation-delay: -150ms;
}

.pixiv_no1_loader-line-wrap:nth-child(4) {
    animation-delay: -200ms;
}

.pixiv_no1_loader-line-wrap:nth-child(5) {
    animation-delay: -250ms;
}

.pixiv_no1_loader-line-wrap:nth-child(1) .pixiv_no1_loader-line {
    border-color: hsl(0, 80%, 60%);
    height: 90px;
    width: 90px;
    top: 7px;
}

.pixiv_no1_loader-line-wrap:nth-child(2) .pixiv_no1_loader-line {
    border-color: hsl(60, 80%, 60%);
    height: 76px;
    width: 76px;
    top: 14px;
}

.pixiv_no1_loader-line-wrap:nth-child(3) .pixiv_no1_loader-line {
    border-color: hsl(120, 80%, 60%);
    height: 62px;
    width: 62px;
    top: 21px;
}

.pixiv_no1_loader-line-wrap:nth-child(4) .pixiv_no1_loader-line {
    border-color: hsl(180, 80%, 60%);
    height: 48px;
    width: 48px;
    top: 28px;
}

.pixiv_no1_loader-line-wrap:nth-child(5) .pixiv_no1_loader-line {
    border-color: hsl(240, 80%, 60%);
    height: 34px;
    width: 34px;
    top: 35px;
}

@keyframes pixiv_no1-spin {

    0%,
    15% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

#pixiv_no1_loader-line-tips {
    text-align: center;
    color: #a1a;
    font-size: 18px;
    margin: 66px 0 0 0;
    animation: pixiv_no1-blinker 2s ease-in-out infinite;
    animation-delay: -0.5s;
}

@keyframes pixiv_no1-blinker {
    50% {
        opacity: 0.0;
    }
}


input {
    outline-style: none;
    border: 1px solid #ccc;
    border-radius: 3px;
}

input:focus {
    border-color: #66afe9;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6)
}

.ant-btn {
    line-height: 1.499;
    position: relative;
    display: inline-block;
    font-weight: 400;
    white-space: nowrap;
    text-align: center;
    background-image: none;
    border: 1px solid transparent;
    -webkit-box-shadow: 0 2px 0 rgba(0, 0, 0, 0.015);
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.015);
    cursor: pointer;
    -webkit-transition: all .3s cubic-bezier(.645, .045, .355, 1);
    transition: all .3s cubic-bezier(.645, .045, .355, 1);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    height: 32px;
    padding: 0 15px;
    font-size: 14px;
    border-radius: 4px;
    color: rgba(0, 0, 0, 0.65);
    background-color: #fff;
    border-color: #d9d9d9;
}

.ant-btn-primary {
    color: #fff;
    background-color: #1890ff;
    border-color: #1890ff;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.12);
    -webkit-box-shadow: 0 2px 0 rgba(0, 0, 0, 0.045);
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.045);
}

.ant-btn-red {
    color: #fff;
    background-color: #FF5A44;
    border-color: #FF5A44;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.12);
    -webkit-box-shadow: 0 2px 0 rgba(0, 0, 0, 0.045);
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.045);
}