:root{
    --main-color:#988C86;--extra-color:#DF5646;
    --font-family:'Inter',sans-serif;
    --font-family-extra:'Playfair Display',serif;
}
body {
    font-family: var(--font-family);
    font-weight: 300;
    color: #333;
    overflow: hidden;
    font-size:14px;
    font-weight: 400;
}
html,body{
    height: 100%;
    width: 100%;
}
#myweb_left{
    height: 100%;
    width: 310px;
    background-color: #ffffff;
    border-right: 1px solid rgba(223, 86, 70, .1);
}
@media (max-width: 1600px) {
    #myweb_left .left-inner {
        padding: 25px;
    }
}
#myweb_left .left-inner{
    padding: 40px;
}
@media (max-width: 1600px) {
    #myweb_left {
        width: 250px;
    }
}


.logo{
    margin-bottom: 100px;
    max-width: 190px;
    max-height: 120px;
}

@media (max-width: 1600px) {
    #myweb_left .logo {
    margin-bottom: 50px;
    }
}

.nav{
    height: 369.125px;
}
.nav ul li{
    margin:0 0 30px 0;
    transition: all .3s ease;
}
@media (max-width: 1600px) {
.nav ul li {
margin-bottom: 14px;
    }
}

.nav ul li a{
    position: relative;
    display: block;
    padding: 5px 0;
    font-weight: 500;
    font-family: var(--font-family-extra);
    font-size: 20px;
    transition: .4s all;
}

.nav ul .current a{
    padding-left: 45px;
}
.nav ul .current a::before{
    width: 30px;
}
.nav ul .current a{
    color: #DF5646;
}

.nav ul .c-hover a{
    padding-left: 45px;
}
.nav ul .c-hover a::before{
    width: 30px;
}
.nav ul .c-hover a{
    color: #DF5646;
}

.nav ul li a::before{
    position: absolute;
    content: '';
    bottom: 10px;
    transition: .4s all;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #DF5646;
}

/* 右侧底部 */
#myweb_left .copyright{
    position: absolute;
    bottom: 45px;
    color: rgb(152, 140, 134);
    font-family: var(--font-family-extra);
}
.login-icon{
    text-align: center;
    display: flex;
    width: 90px;
    margin: auto;
    justify-content: space-evenly;
}
.login-icon span{
    font-size: 25px;
    cursor: pointer;
}
.login-icon span:hover{
    color:#DF5646;
    transform: scale(1.2);
}

@media (max-width: 1600px) {
    #myweb_left .copyright {
        bottom: 25px;
    }
}
#myweb_left .copyright .name{
    color:#202020;
}

/* 鼠标移动样式 */
.circle {
    width: 30px;
    height: 30px;
    border: 1px solid #df5646;
    border-radius: 50%;
    position: absolute;
    z-index: 100;
    text-align: center;
    pointer-events: none;
    /* 阻止点击事件发生在该元素上 */
}

.circle span {
    background-color: #df5646;
    height: 6px;
    transition: .5s all;
    width: 6px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.circle-hover {
    transform: scale(13);
    background-color: #df5646;
    opacity: .3;
}

.footer{padding: 20px 0;text-align: center;background:#000;color: #a3a3a3;font-size: 12px;display: flex;justify-content: center;font-size:14px;width: 100%;}
.footer span>a{color:#a3a3a3}
.footer dl {
    display: flex;
    align-items: center;
}
.footer .admin{display: flex;}
.footer a{color: white;}