html {
    height: 100%
}

body.signin {
    height: auto;
    background: url(../img/login-background.jpg) no-repeat center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover
}

.signinpanel {
    width: 1440px;
    margin: 5% auto 0;
    color: #333333
}

.signinpanel .logopanel {
    float: none;
    width: auto;
    padding: 0;
    background: 0
}

.signinpanel .signin-info ul {
    list-style: none;
    padding: 0;
    margin: 20px 0
}

.signinpanel .form-control {
    display: block;
    margin-top: 50px
}
.m-t{
    margin-left: -5px;
}
.signinpanel .btn {
    float: right;
    margin-top: 30px;
}
.signinpanel .uname {
    background: #fff url(../img/user.png) no-repeat 95% center;
    color: #333;
    display: block;
    margin-top: 20px
}
/* 侧边栏样式 */
.contact-box {
    position: fixed; /* 固定定位 */
    top: 64%;
    right: 10px; /* 距离右边10px */
    width: 250px; /* 侧边栏宽度 */
    background-color: #fff; /* 背景颜色 */
    border: 1px solid #ccc; /* 边框 */
    transform: translateY(-50%); /* 垂直居中 */
    padding: 20px; /* 内边距 */
    box-shadow: -2px 0 5px rgba(0,0,0,0.2); /* 阴影 */
    display: none; /* 初始隐藏 */
    z-index: 1000; /* 确保侧边栏在最上层 */
}

/* 触发按钮样式 */
.toggle-btn {
    transform: translateY(-50%);
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    z-index: 1001; /* 确保触发按钮在侧边栏之上 */
}

/* 关闭按钮样式 */
.close-btn {
    float: right;
    background: none;
    border: none;
    color: #aaa;
    font-size: 25px;
    cursor: pointer;
}
.signinpanel .main {margin-top: 20px}
.signinpanel .phones{margin-top: 20px}
.signinpanel .pword {
    background: #fff url(../img/locked.png) no-repeat 95% center;
    color: #333;
    margin-top: 20px;
}

.signinpanel .code {
    background: #fff no-repeat 95% center;
    color: #333;
    margin: 0 0 15px 0
}

.signinpanel .btn {
    margin-top: 10px;
    margin-top: 10px;
}

.signinpanel form {
    background: rgba(255, 255, 255, .3);
    /*border: 1px solid rgba(255, 255, 255, 0);*/
    -moz-box-shadow: 0 3px 0 rgba(12, 12, 12, .03);
    /*-webkit-box-shadow: 0 3px 0 rgba(12, 12, 12, .03);
    box-shadow: 0 3px 0 rgba(12, 12, 12, .03);*/
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 8px;
    padding: 3% 8%;
}

.signup-footer {
    border-top: solid 1px rgba(255, 255, 255, .3);
    margin: 20px 0;
    padding-top: 15px
}

@media screen and (max-width: 768px) {
    .signinpanel, .signuppanel {
        margin: 0 auto;
        width: 380px !important;
        padding: 20px
    }

    .signinpanel form {
        margin-top: 20px
    }

    .signup-footer, .signuppanel .form-control {
        margin-bottom: 20px
    }

    .signup-footer .pull-left, .signup-footer .pull-right {
        float: none !important;
        text-align: center
    }

    .signinpanel .signin-info ul {
        display: none
    }
}

@media screen and (max-width: 320px) {
    .signinpanel, .signuppanel {
        margin: 0 20px;
        width: auto
    }
}

.checkbox-custom {
    position: relative;
    padding: 0 15px 0 25px;
    margin-bottom: 7px;
    display: inline-block;
    font-size: 14px;
}

.checkbox-custom input[type="checkbox"] {
    opacity: 0;
    position: absolute;
    cursor: pointer;
    z-index: 2;
    margin: -6px 0 0 0;
    top: 50%;
    left: 3px
}

.checkbox-custom label:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -9px;
    width: 18px;
    height: 17px;
    display: inline-block;
    border-radius: 2px;
    border: 1px solid #bbb;
    background: #fff
}

.checkbox-custom input[type="checkbox"]:checked + label:after {
    position: absolute;
    display: inline-block;
    font-family: 'Glyphicons Halflings';
    content: "\e013";
    top: 42%;
    left: 3px;
    margin-top: -5px;
    font-size: 11px;
    line-height: 1;
    width: 16px;
    height: 16px;
    color: #333
}

.checkbox-custom label {
    cursor: pointer;
    line-height: 1.2;
    font-weight: normal;
    margin-bottom: 0;
    text-align: left
}

.form-control, .form-control:focus, .has-error .form-control:focus, .has-success .form-control:focus, .has-warning .form-control:focus, .navbar-collapse, .navbar-form, .navbar-form-custom .form-control:focus, .navbar-form-custom .form-control:hover, .open .btn.dropdown-toggle, .panel, .popover, .progress, .progress-bar {
    box-shadow: none
}

.form-control {
    border-radius: 30px !important;
    padding: 6px 12px !important;
    height: 45px !important
}

.form-control:focus {
    border-color: #1ab394 !important
}
.no-margins {
    white-space: nowrap !important;
    font-size: 40px;
}
@media (max-width: 768px) {
    .no-margins {
        white-space: normal  !important;
    }
}
/*logo样式*/
.image-text-row {
    display: flex; /* 使用Flexbox布局 */
    align-items: flex-start; /* 垂直对齐方式为顶部对齐 */
    justify-content: space-evenly;
    align-items: flex-end;
}

.image-text-container {
    flex: 1; /* 让每个容器占据相同的空间 */
    margin: 0 10px; /* 在容器之间添加一些水平间距 */
    text-align: center; /* 文字居中显示 */
    white-space: nowrap!important;
}

.image-text-container img {
    width: 100%; /* 使图片宽度适应容器宽度 */
    height: auto; /* 保持图片的纵横比 */
    margin-bottom: -20px; /* 图片和文字之间的间距 */
}
.image-text-container p {
    font-size: 30px;
    color: #1E9FFF; /* 字体颜色 */
    margin-bottom: 1px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1); /* 文本阴影 */
    transition: all 0.3s ease; /* 平滑过渡效果 */
    font-family: 'Open Sans', sans-serif; /* 字体家族 */
}
.image-text-container:last-child p {
    margin-top: -32px;
}
.image-text-container:last-child {
    margin-top: -27px;
    margin-bottom: 1px;
}
.signinpanel .row:first-child {
    margin-bottom: 80px;
}
.login-h1{
    display: flex;
    margin-right: 40px;
    font-size: 40px;
    text-align: center;
    justify-content: center;
}