/* 全局变量 */
:root {
    --main-bg-color: #ffffff;
    --main-text-color: #333333;
    --main-primary-color: #1890ff;
    --main-secondary-color: #52c41a;
    --main-border-color: #e8e8e8;
    --main-font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
}

/* 全局重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--main-font-family);
    color: var(--main-text-color);
    line-height: 1.5;
    background-color: var(--main-bg-color);
}

.main-topstyle {
    /* position: fixed;
    z-index: 9999999999 */
}

#main-head {
    width: 100%;
}

.main-content {
    width: 100%;
    position: relative;
    margin: 0 auto;
    padding: 0;
    background: #fff;
    z-index: 10;
    min-height: 100vh;
}



.main-sidebar {
    width: 157px;
    position: fixed;
    top: 50%;
    right: 0px;
    margin-top: -150px;
    background-color: #e5e5e5;
    box-shadow: 0 3px 14px rgba(0, 0, 0, 0.4);
    z-index: 150000;
    font-size: 12px;
    background-color: #ffffff;
    font-family: 'Microsoft YaHei';
}