body {
    font-family: Helvetica;
}

h1 {
    margin-top: 3px;
    margin-bottom: 3px;
}

.captcha-main {
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 360px;
    background-color: white;
    padding: 8px;
}

.toparea {
    background-color: #4990e2;
    padding: 25px;
    color: white;
}

.target-image-text {
    padding: 0px;
}

.instructions {
    font-size: 17px;
}

.imagearea {
    height: auto;
}

.imagetable {
    border-spacing: 2px 0px;
    border-collapse: separate;
    margin-top: 5px;
    margin-left: -3px;
    margin-right: -3px;
    max-width: 367px;
    transition: 1s;
}

.imagetable td {
    height: 120px;
    width: 120px;
    cursor: pointer;
    overflow: hidden;
}

.imagearea img {
    margin: 0;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    transition: 0.2s;
    /* cha cha real smooth (not really) */
}

.selected {
    border: 7px solid #4990e2;
    width: -moz-calc(100% - 14px);
    /* cross-browser compatibility like a true dev */
    width: -webkit-calc(100% - 14px);
    width: -o-calc(100% - 14px);
    width: calc(100% - 14px);
    height: -moz-calc(100% - 14px);
    height: -webkit-calc(100% - 14px);
    height: -o-calc(100% - 14px);
    height: calc(100% - 14px);
}

.unselected {
    width: 100%;
    height: 100%;
    border: none;
}

.wrong {
    border: 7px solid red;
}

.correct {
    border: 7px solid green;
}

.verify {
    float: right;
    background-color: #4990e2;
    padding: 10px;
    font-size: 17px;
    color: white;
    margin-bottom: 5px;
    margin-top: 10px;
    padding-left: 25px;
    padding-right: 25px;
    border: none;
    cursor: pointer;
}

.try-again {
    margin-right: 10px;
    font-size: 17px;
    color: red;
    display: none;
}

.no-table {
    float: right;
    border-collapse: collapse;
    border: none;
}

a.no-decoration {
    text-decoration: none;
    /* 去掉下划线 */
    color: inherit;
    /* 继承父元素的颜色 */
}

/* 覆盖所有可能状态 */
  a.no-decoration:link,
  a.no-decoration:visited,
  a.no-decoration:hover,
  a.no-decoration:active,
  a.no-decoration:focus {
    text-decoration: none !important;
    color: inherit !important;
    outline: none; /* 移除焦点轮廓 */
  }


h1 {
    z-index: 1145;
}


h2 {
    word-wrap: break-word;
    word-break: break-all;
}

h3 {
    word-wrap: break-word;
    word-break: break-all;
}

#redirectButton {
    background-color: #9E9E9E;
    border: 0;
    color: #FAFAFA;
    border-radius: 22px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

#redirectButton:enabled {
    cursor: pointer;
}

#redirectButton:enabled:hover {
    background-color: #2979FF;
}

#redirectButton:disabled {
    background-color: #9E9E9E;
    color: #FAFAFA;
    cursor: not-allowed;
}

#redirectButton:disabled:hover {
    background-color: #9E9E9E;
    box-shadow: none;
}

#captcha-body {
    z-index: 999;
    display: none;
}

#pass {
    border: 0;
    outline: none;
    background-color: transparent;
    text-decoration: none;
    color: inherit;
}
.captcha {
    position: relative;
    width: 280px;
    margin: 16px;
    padding: 24px;
    outline: 0.666667px solid rgb(211, 211, 211);
    box-shadow: 0px 0px 4px 1px rgba(0, 0, 0, 0.08);
    background: rgb(249, 249, 249);
    border-radius: 3px;
    transition: background 0.25s;
    color: #000;
}

.captcha-clickable {
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
    -webkit-user-select: none;
    -moz-user-focus: none;
    -moz-user-select: none;
    user-select: none;
}

.captcha-checkbox {
    background: #fff;
    width: 24px;
    height: 24px;
    outline: 2px solid rgb(193, 193, 193);
    border-radius: 2px;
    display: inline-block;
    vertical-align: middle;
    transition-property: border-radius, transform;
    transition-duration: 0.5s;
}

.captcha-clickable:hover .captcha-checkbox {
    outline: 2px solid rgb(178, 178, 178);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 1px 0px inset;
}

.captcha-clickable:active .captcha-checkbox {
    background: rgb(235, 235, 235);
}

.captcha-text {
    display: inline-block;
    vertical-align: middle;
    margin-left: 16px;
    font-size: 15px;
    transition: 0.125s;
    font-family: sans-serif !important;
    transform: translateY(-1px);
    width: calc(100% - 64px);
}

.captcha-icon {
    position: absolute;
    left: 24px;
    top: 24px;
    transition: 0.3s;
}

.captcha-icon:not(.captcha-spinner) {
    transform: scale(1.5, 0);
}

.captcha-spinner {
    opacity: 0;
    transition: 0.3s;
    animation-name: spin;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-duration: 1s;
}

@keyframes spin {
    from {
        transform: rotate(0) scale(1.25);
    }

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

.captcha-mark {
    color: #000 !important;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
    -webkit-user-select: none;
    -moz-user-focus: none;
    -moz-user-select: none;
    user-select: none;
}

.captcha-mark-text {
    position: absolute;
    right: 8px;
    bottom: 4px;
    font-size: 12px;
    opacity: 0.5;
    font-family: sans-serif !important;
    transition: 0.25s;
    text-decoration: none;
}

.captcha-mark:hover .captcha-mark-text {
    text-decoration: underline;
}

.captcha-mark-logo {
    position: absolute;
    right: 8px;
    bottom: 24px;
    width: 32px;
    height: 32px;
}

.captcha-dark {
    outline: 0.666667px solid rgb(92, 92, 92);
    box-shadow: 0px 0px 4px 1px rgba(255, 255, 255, 0.08);
    background: rgb(54, 54, 54);
    color: #fff;
}

.captcha-dark .captcha-checkbox {
    background: rgb(48, 48, 48);
    outline: 2px solid rgb(110, 110, 110);
}

.captcha-dark .captcha-clickable:hover .captcha-checkbox {
    outline: 2px solid rgb(125, 125, 125);
    box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset;
}

.captcha-dark .captcha-clickable:active .captcha-checkbox {
    background: rgb(68, 68, 68);
}

.captcha-dark .captcha-mark {
    color: #fff !important;
}