.the-page-g {
    background: url("../images/common/water.png") no-repeat;
    background-position: 80% 60%;}

.check-website {
    padding-top: var(--gap-72);
    text-align: center;
}

.check-website .search-card {
    width: 800px;
    margin: 40px auto 0;
}

.check-website .search-box input {
    display: flex;
    flex: 1;
    margin: 0 12px;
    height: 50px;
    background: #FFFFFF;
    border-radius: 0 0 0 0;
    opacity: 1;
    border: 0;
    font-size: 16px;
}

.check-website .search-box {
    display: flex;
    padding: 8px;
    box-shadow: var(--box-shadow-light);
    background: #fff;
    border-radius: 4px;
}

.check-website .search-box .button-g {
width: 160px;
}

.check-website .search-box button span {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0;
    color: #FFFFFF;
}

.check-website .search-box .loading {
    position: relative;
    display: none;
}

.check-website .search-box .loading img {
    position: absolute;
    top: -13px;
    left: -15px;
    width: 30px;
    height: 30px;
    line-height: 40px;
    animation: spin 2s linear infinite;
}

.check-website .result-card {
    display: none;
    text-align: center;
    position: relative;
    height: 300px;
    margin-top: 100px;
}

.check-website .result-card .success,
.check-website .result-card .error {
    display: none;
}

.check-website .result-card img {
    width: 150px;
    height: 150px;
}

.check-website .result-card .header-tip {
    margin-top: 24px;
}

.check-website .result-card .link {
    color: var(--color-primary);
    text-decoration: underline;
    margin-top: 24px;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}