.mobile-navigation {
    width: 100vw;
    height: 50px;
    background: #ffffff;
    position: fixed;
    top: 0;
}

.mobile-navigation .logo-wrapper {
    padding: 5px 10px;
    height: 40px;
}

.logo-wrapper .logo {
    display: inline-block;
}

.logo-wrapper img {
    height: 40px;
}

.mobile-navigation > .mobile-show {
    position: absolute;
    right: 10px;
    color: #666464;
    text-align: center;
    line-height: 40px;
    background-repeat: no-repeat;
    background-size: 20px 19px;
    width: 40px;
    height: 40px;
    top: 5px;
    background-position: 50%;
    z-index: 9;
    /*background-image: url(../../../assets/hanbao.png);*/
}

.mobile-body {
    position: fixed;
    top: 50px;
    width: 100vw;
    height: calc(100vh - 70px);
    background-color: #ffffff;
    display: none;
    color: #000000;
    padding-top: 20px;
    z-index: 100;
}

li {
    list-style: none;
}

.mobile-body > ul > li {
    margin: 20px 0;
    padding: 0;
}

.mobile-body > ul > li.active {
    color: rgb(179, 204, 85);
}

a {
    outline: none;
    color: rgb(71,69,69);
    text-decoration: none;
}

.banner {
    position: relative;
    width: 100%;
    height: 80vh;
}

.points {
    position: absolute;
    text-align: center;
    line-height: 9vw;
    bottom: 45px;
    width: 50%;
    height: 5vw;
    left: 25%;
    z-index: 1;
}

.points > .point {
    display: inline-block;
    text-align: left;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    margin-right: 8px;
    user-select: none;
    background: rgb(102, 100, 100);
}

.points > .point:last-child {
    margin-right: 0;
}

.point.active {
    background: transparent;
    border: 1px solid white;
    width: 18px;
    height: 18px;
}

.point.active::after {
    position: absolute;
    content: '';
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-left: 3px;
    margin-top: 3px;
    background: white;
}

.last {
    position: absolute;
    color: white;
    top: 45%;
    left: 18.5%;
    z-index: 1;
}

.last > i {
    font-size: 3vw;
}

.next {
    position: absolute;
    color: white;
    top: 45%;
    right: 18.5%;
    z-index: 1;
}

.next > i {
    font-size: 2.5vw;
}

.content {
    width: 60%;
    margin: 13vh 20% 0;
}

.content > .grid > .card {
    width: 100%;
    height: 22vh;
    margin-right: 18px;
    margin-bottom: 60px;
    cursor: pointer;
}

.content > .grid > .card > img {
    user-select: none;
}

.content > .grid > .card > .title {
    font-size: 14px;
    font-weight: bold;
    margin-top: 8px;
    color: rgb(186, 209, 110);
    white-space: nowrap;
}

.content > .grid > .card > .desc {
    margin-top: 3px;
    color: rgb(123, 121, 121);
    white-space: nowrap;
}

.content > .grid > .card > .desc > i {
    font-size: 13px;
}

.content > .grid > .card > .desc > .info {
    font-size: 12px;
}


.content > .grid > .card:last-child {
    margin-right: 0;
}

.points > .point-mobile {
    display: inline-block;
    text-align: left;
    border-radius: 50%;
    width: 10px;
    height: 10px;
    margin-right: 8px;
    user-select: none;
    background: rgb(102, 100, 100);
}

.point-mobile.active-mobile {
    background: transparent;
    border: 1px solid white;
    width: 8px;
    height: 8px;
}

.point-mobile.active-mobile::after {
    position: absolute;
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin-left: 1px;
    margin-top: 1px;
    background: white;
}

.login-box {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, .4);
    z-index: 9999999;
    /*display: none;*/
}

.login-box > .box {
    width: 80vw;
    margin: 0 auto;
    margin-top: 100px;
    height: auto;
    background-color: #fff;
    padding: 5vw;
}

.login-btn {
    height: 45px;
    line-height: 45px;
    background-color: #5d5e73;
    text-align: center;
    color: #ffffff;
    margin-top: 30px;
    cursor: pointer;
}

.reg {
    cursor: pointer;
    line-height: 30px;
}

.form-label {
    color: rgb(105, 101, 101);
    font-size: 14px;
    font-weight: 300;
}

.form-input {
    width: 100%;
    margin-top: 8px;
    height: 30px;
    color: rgb(65, 65, 65);
    text-indent: 5px;
    font-size: 17px;
    margin-bottom: 8px;
    outline: none;
    border: 1px solid rgb(192, 192, 192);
}

.login-type-active {
    border-bottom: 2px solid #8fb72e;
    color: #8fb72e;
}

