@font-face {
    font-family: "Bellamy-Stevenson";
    src: url("../fonts/Bellamy-Stevenson-2.otf");
}

body {
    margin: 0;
}
.main-left {
    background-image: url("https://s1.ax1x.com/2022/08/16/vwYBGQ.jpg");
    background-size: cover;
    height: 100%;
    position: fixed;
    width: 40%;
}
.main-left h1 {
    font-family: Bellamy-Stevenson, serif;
    color: #fff;
    font-size: 120px;
    text-align: center;
    margin: 110px 0;
    cursor: default;
}
.main-left .my-links {
    font-size: 38px;
    text-align: center;
    position: absolute;
    bottom: 30px;
    width: 100%;
}
.main-left .my-links a {
    color: white;
    cursor: pointer;
    text-decoration: none;
    margin: 0 12px;
}
.main-right {
    box-sizing: border-box;
    background-color: #fff;
}
@media(orientation:landscape){
    .main-left {
        display: block;
    }
    .main-right {
        width: 60%;
        margin-left: 40%;
    }
}
@media(orientation:portrait){
    .main-left {
        display: none;
    }
    .main-right {
        width: 100%;
        margin-left: 0;
    }
}

.list-item {
    font-family: "宋体", serif;
    /*border: 1px solid #0a53be;*/
    background: linear-gradient(white, white, #fafafa);
    padding: 64px 48px;
    cursor: default;
}
.list-item h2 {
    margin: 0 0 20px 0;
    font-weight: 500;
    font-family: "宋体", serif;
    cursor: pointer;
    color: #2c3034;
    transition: color .6s;
}
.list-item h2:hover {
    color: #0f5132;
    transition: color .6s;
}
.list-item h6 {
    margin: 0 0 20px 0;
}
.list-item p {
    color: #666;
}
.main-right nav {
    height: 48px;
    text-align: center;
}
.main-right nav a {
    display: inline-block;
    line-height: 48px;
    height: 48px;
    margin: 0 20px;
    border-bottom: 3px solid darkgreen;
    text-decoration: none;
    font-size: 22px;
    cursor: pointer;
}
.about-me {
    height: 100%;
    position: fixed;
    width: 300px;
    background-color: #fff;
    top: 0;
    right: -100%;
    box-shadow: 0 0 10px 0 #0001;
    transition: right .5s;
}
.about-me .close-about-me {
    font-size: 28px;
    position: absolute;
    top: 10px;
    right: 10px;
    color: darkgreen;
    cursor: pointer;
}
.head-image {
    height: 128px;
    width: 128px;
    border-radius: 64px;
    /*border: 3px solid #0f5132;*/
    margin: 100px auto 50px auto;
    background-image: url("../images/head-image.jpeg");
}
.about-me h2 {
    text-align: center;
    font-size: 26px;
    font-weight: 400;
    font-family: SourceHanSerifCN-Regular, serif ;
}
.about-me ul li{
    margin: 18px 0;
    color: #555;
    line-height: 30px;
}
.about-me ul li::marker {
    color: #0f5132;
}