@font-face {
    font-family: "PingFang SC", "Microsoft YaHei UI";
}

* {
    padding: 0;
    margin: 0;
    border: 0;
}

ul li {
    list-style: none;
}

button {
    outline: none !important;
}

html {
    min-height: 100%;
    height: 100%;
}

body {
    background-color: black !important;
    background-image: url("/static/images/v1/bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

a {
    text-decoration: none; /* 移除链接默认的下划线 */
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-transition-delay: 99999s;
    -webkit-transition: color 99999s ease-out,
    background-color 99999s ease-out;
}

input {
    /* ios下背景色会默认渐变显示，并且会有圆角 */
    -webkit-appearance: none;
    border-radius: 0;
    line-height: normal;
    /* 光标问题  */
}

/*Layout start*/
.container {
    margin: 0 auto;
}

.header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    margin-top: 15px;
    margin-bottom: 40px;
}

.header .dropdown .dropdown-menu {
    background: rgba(0, 0, 0, 0.4) !important;
    box-sizing: border-box;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.dropdown-menu li {
    font-size: 16px;
    padding: 5px 10px;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
}

.dropdown-menu .active {
    color: #FFFFFF;
    font-weight: 500;
    background: linear-gradient(90deg, rgba(115, 229, 85, 0.4) 0%, rgba(115, 229, 85, 0) 100%);
}

.main {
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    opacity: 1;
    background: rgba(255, 255, 255, 0.06);
    margin: 0 auto;
}

.submit {
    color: black;
    font-size: 18px;
    font-weight: 600;
    width: 100%;
    min-width: 100%;
    border-radius: 12px;
    height: 56px;
    line-height: 56px;
    background-color: #73E555;
    margin-top: 15px;
}

.submit:link {
    color: black;
}

.submit:hover {
    color: black;
}

.submit:active {
    color: black;
}

.btn {
    padding: 0 !important;
}

/*Layout end*/

@media only screen and (max-width: 768px) {
    /* 在此处添加适合手机屏幕大小的样式 */
    .container {
        min-width: 100%;
        width: 100%;
    }

    .main {
        padding: 16px 20px;
    }
}

@media only screen and (min-width: 769px) {
    /* 在此处添加适合平板电脑屏幕大小的样式 */
    .container {
        min-width: 50%;
        width: 50%;
    }

    .main {
        padding: 40px 60px;
        margin-top: 8%;
    }
}