*{
    padding: 0;
    margin: 0;
    border: 0;
    font-size: 12px;
}
header{
    background-color: rgba(255, 255, 255, 0.9);
    height: 120px;
    width:100%;
    position: fixed;
}
h1{
    position: absolute;
    color: rgb(0, 0, 0);
    left: 120px;
    top: 30px;
    line-height: 40px;
    font-family: "Lucida Console";
    font-size: 15px;
}
header ul{
    position: absolute;
    left: 5vw;
    top: 80px;
    line-height: 40px;
}
header li{
    display: inline;
    margin-right:4vw;
}
header a {
    color: rgb(0, 0, 0);
    text-decoration: none;
    font-family: "Lucida Console";
}
header a:hover{
    text-decoration: underline;
}
.about{
    padding-left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* height: 100vh; */
}
.about-text{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    width: 600px;
    font-family: "Lucida Console";
    line-height: 1.5;
    margin: auto; /* 居中 */
    text-align: justify; /* 对齐 */
}
.cv{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90vw;
    height: 1100px;
}
.cv-text{
    display: flex;
    flex-direction: column;
    align-items: right;
    justify-content: center;
    width: 60vw;
    font-family: "Lucida Console";
    line-height: 1.5;
    margin: auto; /* 居中 */
    text-align: justify; /* 对齐 */
}
.contact{
    display: flex;
    padding: 2vh 10vw 2vh 10vw;
    line-height: 1.5;
    height: auto;
}
.contact p{
    font-family: "Lucida Console";
    line-height: 1.5;
    padding-left: 2vh;
    padding-top: 0vh;
    align-items: center;
    width: auto;
    font-size: 15px;
}
.contact a{
    background-color: #ffffff;
    font-family: "Lucida Console";
    line-height: 1.5;
    padding-left: 2vh;
    padding-top: 0vh;
    align-items: center;
    width: auto;
    font-size: 15px;
    text-decoration: none;
    color: black;
}
.contact a:hover{
    text-decoration: underline;
    cursor: pointer;
}
.artwork{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 10vh 30vw 10vh 10vw;
    font-family: "Lucida Console";
    line-height: 1.5;
    height: 200px;
}
.artwork p{
    line-height: 1.5;
    padding: 5px;
}

.artwork img{
    padding: 5px 5px 5px 5px;
    width: 25vw;
    height: 15vw;
    object-fit: cover;
    cursor: pointer;
}

.artwork-catagory{
    padding-left: 10vw; 
    padding-top: 10vh;
}

.artwork-catagory p{
    font-size: 15px; 
    font-family: "Lucida Console";
}

.copyright{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 20vh;
}
.menu{
    display: none;
}
.hidden {
    display: none;
}
.research{
    display: flex;
    padding: 2vh 40vw 2vh 10vw;
    line-height: 1.5;
    height: auto;
}
.research p{
    font-family: "Lucida Console";
    line-height: 1.5;
    padding-left: 2vh;
    padding-top: 0vh;
    align-items: center;
    width: auto;
    font-size: 12px;
    margin: auto; /* 居中 */
    text-align: justify; /* 对齐 */
}
.awards{
    display: flex;
    padding: 2vh 40vw 2vh 10vw;
    line-height: 1.5;
    height: auto;
}
.awards p{
    font-family: "Lucida Console";
    line-height: 1.5;
    padding-left: 2vh;
    padding-top: 0vh;
    align-items: center;
    width: auto;
    font-size: 12px;
    margin: auto; /* 居中 */
    text-align: justify; /* 对齐 */
}

/* RWD */
@media(max-width: 768px) {
    h1{
        position: absolute;
        color: rgb(0, 0, 0);
        left: 120px;
        top: 30px;
        line-height: 40px;
        font-family: "Lucida Console";
        font-size: 30px;
    }
    header ul{
        display:none;
    }
    header h1{
        left:50%;
        transform: translateX(-50%);
    }
    header li{
        display: block;
        margin-right:4vw;
        padding: 2vh;
    }
    header a {
        color: rgb(0, 0, 0);
        text-decoration: none;
        font-family: "Lucida Console";
        font-size: 20px;
    }
    header a:hover{
        text-decoration: underline;
    }
    .menu{
        display:block;
        background-color: transparent;
        color: black;
        font-size: 35px;
        position: absolute;
        top: 15px;
        left: 20px;
        border: none;
        cursor: pointer;
        z-index:9999;
    }
    .hidden {
        display: none;
    }
    #popupMenu {
        position: absolute;
        border: 0px solid #ffffff;
        background-color: #ffffff;
        padding: 10px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        width: 50vw;
        height: 100vh;
    }
    .cv{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100vw;
        height: 1300px;
    }
    .cv-text{
        display: flex;
        flex-direction: column;
        align-items: right;
        justify-content: center;
        width: 60vw;
        font-family: "Lucida Console";
        line-height: 1.5;
    }
    .about{
        padding-left: 0px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100vh;
    }
    .about-text{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 300px;
        font-family: "Lucida Console";
        line-height: 1.5;
    }
    .artwork{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        font-family: "Lucida Console";
        padding: 10vh 10vw 10vh 10vw;
        line-height: 1.5;
        height: auto;
    }
    .artwork img{
        width: 70vw;
        height: 50vw;
        object-fit: cover;
        cursor: pointer;
    }
    .artwork-catagory{
        padding-left: 20vw; 
        padding-top: 10vh;
    }
    .artwork p{
        line-height: 1.5;
        padding: 10px;
    }
    .artwork-hidden{
        display: none;
    }
    .research{
        display: flex;
        padding: 2vh 10vw 2vh 10vw;
        line-height: 1.5;
        height: auto;
    }
    .research p{
        font-family: "Lucida Console";
        line-height: 1.5;
        padding-left: 2vh;
        padding-top: 0vh;
        align-items: center;
        width: auto;
        font-size: 12px;
    }
    .awards{
        display: flex;
        padding: 2vh 10vw 2vh 10vw;
        line-height: 1.5;
        height: auto;
    }
    .awards p{
        font-family: "Lucida Console";
        line-height: 1.5;
        padding-left: 2vh;
        padding-top: 0vh;
        align-items: center;
        width: auto;
        font-size: 12px;
    }
}