
:root{
    --theme-primary-color:#336699;  /*全局定义主题颜色变量 默认*/
}

body {
    color: var(--theme-primary-color);
    width:1000px;
    margin:10px auto;
}

.badge {
    background-color: transparent;
    float: left;
    margin-left: 10px;
    margin-top: 0px;
    margin-right: 10px;
}

.badge img {   
    height: 100px;
    width: 100px;
}

.main_title {
    font-weight: bold;
    font-size: xx-large;
    color: var(--theme-primary-color);
    padding-left: 10px;
    padding-right: 10px;
    text-align: left;
    height: 110px;
    line-height: 110px;
}

.menu {
    color: white;
    font-weight: bold;
    background: var(--theme-primary-color);
    font-size: large;
    padding: 10px;
    text-align: center;
}

.menu_item {
    padding: 10px;
    margin-left: 30px;
    margin-right: 30px;
}

.menu a {
    color: white;
}



