@charset "utf-8";
/* Some  basic styles
--------------------------------------------------------*/

html, body, h1, h2, h3, h4, h5, h6, div, dl, dt, dd, ul, ol, li, p, blockquote, pre, hr, figure, table, caption, th, td, form, fieldset, legend, input, button, textarea, menu {
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    height: 100vh;
    min-height: 100%;
    position: relative;
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
}

@media only screen and (max-width: 414px) {
    html {
        font-size: 12px;
    }
}

@media only screen and (max-width: 360px) {
    html {
        font-size: 10px;
    }
}

body {
    width: 100%;
    height: 100vh;
    min-width: 360px;
    min-height: calc(100vh - 50px);
    /*background: linear-gradient(200deg, #e3c5eb, #a9c1ed);*/
    background-color: white;
    /*溢出隐藏*/
    /*overflow: hidden;*/
    overflow-x: hidden;
    font-family: "Microsoft YaHei", "Microsoft JhengHei", Arial, sans-serif;
}

.border-top {
    border-top: 1px solid #e5e5e5;
}

.border-bottom {
    border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
    font-size: 1rem;
    line-height: inherit;
}

/*外链的格式*/
del, ins, u, s, a, a:hover {
    text-decoration: none;
}

a {
    text-decoration: none;
    transition: all 0.4s ease-in-out;
}

a:hover {
    color: #6f0188;
}

/*列表的格式*/
li {
    list-style: none;
}


/* Website Background
--------------------------------------------------------*/
.bg-img {
    left: 0;
    top: 0;
    z-index: -1;
    position: fixed;
    width: 100%;
    height: 100%;
    /*background-avatar: url("../file/avatar/background/bg.jpeg");*/
    /* 设置背景颜色，背景图加载过程中会显示背景色 */
    background-color: white;
    /* 背景图不平铺 */
    background-repeat: no-repeat;
    background-position: center center;
    /* 让背景图基于容器大小伸缩 */
    background-size: cover;
    -webkit-background-size: cover;
    -o-background-size: cover;
    -webkit-filter: blur(20px);
    -moz-filter: blur(20px);
    filter: blur(20px);
    /* 当内容高度大于图片高度时，背景图像的位置相对于viewport固定 */
    background-attachment: fixed;
    zoom: 1;
}

/*Website Header
--------------------------------------------------------*/
/*主导航样式*/
.navbar {
    box-shadow: 0 0 10px rgba(0, 0, 0, .6);
}

/*导航样式：后台绑定时也可以定义配置*/
.wp-menu {
    margin: 0 auto
}

.wp-menu .menu-item {
    display: inline-block;
    float: left;
    position: relative;
}

.wp-menu .menu-item a > .menu-switch-arrow {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url(images/nav_j.png) no-repeat center center;
    vertical-align: middle;
}

.wp-menu .menu-item a.menu-link {
    display: inline-block;
    padding: 0 25px;
    line-height: 43px;
    color: #000;
    font-size: 17px;
}

.wp-menu .menu-item.hover a.menu-link,
.wp-menu .menu-item a.hover {
    background-color: #91c427;
    text-decoration: none;
    color: #eee;
}

.sub-menu {
    display: none;
    position: absolute;
    left: 0;
    top: 43px;
    min-width: 134px;
    z-index: 100;
    background: #fff;
}

.sub-menu .sub-item {
    position: relative;
    white-space: nowrap;
    vertical-align: top;
    _zoom: 1;
}

.sub-menu .sub-item a {
    display: block;
    color: #000;
    height: 40px;
    line-height: 40px;
    padding: 0;
    font-size: 14px;
    background: none;
    text-align: center;
}

.sub-menu .sub-item.hover > a,
.sub-menu .sub-item a:hover {
    color: #fff;
    background-color: #91c427;
    display: block;
}

.sub-menu .sub-menu {
    left: 100%;
    top: 0;
    z-index: 200;
    background: #fff;
}

/*
--------------------------------------------------------
Website Footer
--------------------------------------------------------
*/
.footer a {
    text-align: center;
    color: #ffffff;
    font-size: 12px;
    line-height: 20px;
    text-decoration: none !important;
    outline: none !important;
}

.footer a:hover {
    color: #6f0188;
}

/*
--------------------------------------------------------
Login Register
--------------------------------------------------------
*/
.login-box {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    padding: 40px;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, .4);
    box-sizing: border-box;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .6);
    border-radius: 15px;
}

.login-box h2 {
    margin: 0 0 30px;
    padding: 0;
    color: #fff;
    text-align: center;
}

.login-box .form-group label {
    display: block;
    color: #0F1216;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.login-box .form-group input {
    font-size: 1rem;
    color: #fff;
    border: none;
    outline: none;
    background: transparent !important;
    padding: 0 0 0 10px ;
}

.login-box .form-group .login_input {
    width: 100%;
    border: none;
    border-bottom: 1px solid #fff;
    border-radius: 5px;
}


/*占位符的颜色*/
.login-box .form-group input::-webkit-input-placeholder { /* WebKit browsers 适配谷歌 */
    color: #dee1e6;
}

.login-box .form-group input:-moz-placeholder { /* Mozilla Firefox 4 to 18 适配火狐 */
    color: #dee1e6;
}

.login-box .form-group input::-moz-placeholder { /* Mozilla Firefox 19+ 适配火狐 */
    color: #dee1e6;
}

.login-box .form-group input:-ms-input-placeholder { /* Internet Explorer 10+  适配ie*/
    color: #dee1e6;
}

.login-box .form-group input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, input:-webkit-autofill:active {
    -webkit-transition-delay: 111111s;
    -webkit-transition: color 11111s ease-out, background-color 111111s ease-out;
}
