* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow: hidden;
}

@media only screen and (orientation: landscape)  and (min-width: 768px) {
    html {
        position: fixed;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-content: center;
        justify-content: center;
        align-items: center;
        background-color: #f6f6f6;
    }

    body {
        position: relative;
        width: 100%;
        height: 100%;
        max-width: calc(100vh / 2);
        box-shadow: 0 1px 10px 0 #43434322;
    }
}

.container {
    width: 100%;
    height: 100vh;
    background: url('/Public/file/image/bg.png') no-repeat;
    background-size: 100% 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: stretch;
}

header {
    width: 100%;
    height: 28vh;
    padding: 40px 20px;
    background: url("/Public/file/image/top.png") no-repeat;
    background-size: 100% 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: stretch;
    gap: 20px;
}

header .logo-box {
    width: 100%;
    height: 20%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
}

header .logo {
    width: 30%;
    background: url("/Public/file/image/logo.png") no-repeat;
    background-size: 100% 100%;
}

header .title-box {
    width: 100%;
    height: 20%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
}

header .title {
    width: 90%;
    background: url("/Public/file/image/title.png") no-repeat;
    background-size: 100% 100%;
}

main {
    position: absolute;
    width: 100%;
    height: auto;
    top: 16vh;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: stretch;
    gap: 20px;
}

main .content {
    margin: 30px 0 0 0;
    width: 100%;
    height: auto;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: stretch;
    gap: 20px;
}

main .content .avatar {
    position: absolute;
    top: 0;
    right: 40px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: white;
    padding: 5px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

main .content .avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

main .content .avatar span {
    position: absolute;
    bottom: 5px;
    height: 20px;
    text-align: center;
    font-size: 14px;
    color: white;
}

main .content .intro {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: stretch;
    gap: 5px;
}

main .content .intro h2 {
    width: 100%;
    height: 40px;
    font-size: 20px;
    color: #333;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
}

main .content .intro h2 > span {
    margin: 0 5px;
    padding: 0 10px;
    width: auto;
    height: 20px;
    font-size: 12px;
    color: white;
    background: #2964e6;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}


main .content .intro p {
    width: 100%;
    height: auto;
    font-size: 14px;
    color: #888;
    display: flex;
}

main .content .modules {
    padding: 10px 0;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: flex-start;
    align-items: flex-start;
    gap: 10px;
    justify-content: space-between;
}

main .content .modules .module {
    position: relative;
    width: calc(100% / 2 - 10px);
    height: 100px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: stretch;
    gap: 5px;
}

main .content .modules .module > img {
    position: absolute;
    width: 100%;
    height: 100%;
}

main .content .modules .module > p {
    position: relative;
    padding: 10px 0 0 15px;
    width: 100%;
    font-size: 16px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: stretch;
}

main .content .modules .module > a {
    position: relative;
    padding: 0 15px;
    width: 100%;
    height: 20px;
    text-decoration: none;
    color: #888;
    font-size: 13px;
}

main .recent {
    width: 100%;
    height: auto;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: stretch;
    gap: 20px;

}

main .recent .recent-title {
    position: relative;
    width: 100%;
    height: 30px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
}

main .recent .recent-title h3 {
    color: #333;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

main .recent .recent-title h3 > i {
    background: linear-gradient(45deg, #2964e6, #2964e655);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 26px;
}

main .recent .recent-title > .refresh {
    width: 60px;
    height: 100%;
    background: #ffffff00;
    border: solid 1px #888;
    border-radius: 15px;
    color: #888;
}

main .recent .recent-item {
    position: relative;
    width: 100%;
    height: auto;
    background: #fafafa;
    color: #888;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: stretch;
}

main .recent .recent-item ul {
    position: relative;
    padding: 20px;
    min-height: 60px;
    height: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: stretch;
}

main .recent .recent-item ul li {
    position: relative;
    width: 100%;
    height: 30px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
}

main .recent .recent-item ul li > a {
    text-decoration: none;
    color: #888;
}

.login {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.login .login-box {
    position: relative;
    padding: 20px;
    width: 80%;
    height: auto;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: stretch;
}

.login .login-box .login-title {
    position: relative;
    width: 100%;
    height: 40px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.login .login-box .login-title h2 {
    font-size: 22px;
    color: #333;
}

.login .login-box .login-form {
    position: relative;
    margin: 10px 0 20px 0;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: stretch;
}


.login .login-box .login-form form {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    gap: 20px;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: stretch;
}

.login .login-box .login-form form .form-group {
    position: relative;
    width: 100%;
    gap: 10px;
    height: auto;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.login .login-box .login-form form .form-group label {
    width: 100%;
    display: flex;
    height: 20px;
    font-size: 14px;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
}

.login .login-box .login-form form .form-group input {
    width: 100%;
    padding: 0 10px;
    display: flex;
    height: 36px;
    border: solid 1px #0091FF;
    border-radius: 5px;
}



.login .login-box .login-form form .form-group input:focus {
    outline: none;
}

.login .login-box .login-form form .form-group input::placeholder {
    color: #888;
}

.login .login-box .login-form form .form-group .button-group{
    width: 100%;
    display: flex;
    gap: 20px;
}

.login .login-box .login-form form .form-group .button-group > .btn-login {
    margin-top: 10px;
    width: 60%;
    height: 36px;
    background: #0091FF;
    color: white;
    border: solid 1px #0091FF;
    border-radius: 5px;
}

.login .login-box .login-form form .form-group .button-group > .btn-tourists{
    margin-top: 10px;
    width: 60%;
    height: 36px;
    background: #888;
    color: white;
    border: solid 1px #888;
    border-radius: 5px;
}

.login .login-box .login-form form .form-group .validation-box {
    position: relative;
    width: 100%;
    display: flex;
    height: auto;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: stretch;
    gap: 10px;
}

.login .login-box .login-form form .form-group .validation-box button {
    background: #0091FF;
    color: white;
    border: solid 1px #0091FF;
    border-radius: 5px;
}

.login .login-box .login-form form .form-group span{
    width: 100%;
    color: #555;
    font-size: 13px;
    display: flex;
}