html,body {
    padding: 0;
    margin: 0;
    min-width: 100%;
    min-height: 100vh;
    background: #f3f5f6;
    height: 100%;
}

.main {
    width: 100%;
}

.head {
    font-size: 30px;
    font-weight: 900;
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.menus {
    width: 100%;
    height: 50px;
    background: #3e63ee;
    display: flex;
    gap: 30px;
    justify-content: center;
    overflow: hidden;
}

.menus-item {
    margin-top: 11px;
    color: white;
    text-decoration: none;
    font-size: 16px;
    height: 28px;
    line-height: 28px;
    padding: 0px 20px;
}

.menus-active {
    background: #77a6ff;
}

.carousel {
    width: 100%;
    text-align: center;
}

.carousel-item {
    display: block;
    width: 100%;
    max-height: 400px;  
    margin: 0 auto;
}

.carousel img {
    max-width: 100%;
    max-height: 100%;
}

.content {
    width: 100%;
    padding-top: 20px;
    text-align: center;
}

.c-content {
    width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    height: 310px;
}

.note {
    float: left;
    height: 100%;
    width: 520px;
    background: white;
    padding: 20px 20px;
}

.note-list {
    width: 448px;
    overflow: hidden;
    padding: 0 34px;
}

.login {
    float: right;
    height: 100%;
    width: 520px;
    background: white;
    background: url("../images/login_background.png");
    padding: 20px 20px;
}

.note-title {
    text-align: left;
}

.note-line {
    border-bottom: 2px dotted #8fbcdf;
    margin-top: 12px;
}

.note-item {
    width: 100%;
    color: #d1d1d1;
}

.note-item a {
    display: block;
    width: 100%;
    text-decoration: none;
    color: black;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 40px;
    text-align: left;
}

.login-item {
    width: 100%;
    margin: 28px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-item-laebl {
    display: inline-block;
    width: 50px;
}

.login-account {
    border: 1px solid #b3b2b2 !important;
    line-height: 36px !important;
    height: 36px;
    width: 350px !important;
    border-radius: 4px !important;
    background: none !important;
    outline: none !important;
    padding: 0 10px !important;
    font-size: 16px !important;
}
.login-account input{
    height: 36px;
    width: 100% !important;
}


.login-select {
    border: 1px solid #b3b2b2;
    line-height: 36px;
    height: 36px;
    width: 369px;
    border-radius: 4px;
    background: none;
    outline: none;
    padding: 0 10px;
    font-size: 16px;
}

.login-btn {
    width: 420px;
    line-height: 38px;
    font-size: 16px;
    text-align: center;
    background: #3e63ee;
    color: white;
    border-radius: 4px;
    cursor: pointer;
}

.footer {
    width: 100%;
    background: #f0f0f0;
    padding-top: 4px;
    overflow: hidden;
    padding-bottom: 50px;
    margin-top: 20px;
}

.f-content {
    width: 1200px;
    margin: 0 auto;
}

.footer-line {
    box-shadow: -7px 7px 1px 0px #b5b1b1;
    height: 2px;
    margin-top: 2px;
    margin-bottom: 20px;
}

.f-item {
    color: #a8a8a8;
    font-size: 14px;
    line-height: 30px
}
@media only screen and (max-width: 767px) {  .menus { display:none !important;}}