body {
    font-family: "Microsoft YaHei", -apple-system-font, Helvetica Neue, Helvetica, sans-serif;
    color: #565656;
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

:focus {
    outline: none;
}

a {
    text-decoration: none;
    color: #565656;
}

a:hover {
    color: #ff0000;
    text-decoration: none;
}

.region{
    width: 1000px;
    margin: 0 auto;
}

.region-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
    line-height: 1;
}

.region-header .title{
    font-size: 22px;
    color: #000000;
}

.region-header .home{
    background-color: #f56c6c;
    line-height: 36px;
    font-size: 14px;
    font-weight: bold;
    padding: 0 2em;
    color: #FFFFFF;
    border-radius: 6px;
}

.region-header .home:hover{
    background-color: #E16363;
}

.region-body{
    border: 1px solid #f2f2f2;
    padding: 10px;
}

.region-body .item{
    display: flex;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px dashed #f2f2f2;
}

.region-body .item .title{
    writing-mode: vertical-lr; /* 从左到右竖排 */
    text-orientation: upright; /* 文字保持正向（不旋转） */
    padding: 0 20px;
    font-size: 24px;
    color:#000000;
}

.region-body .item ul{
    flex: 1;
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

.region-body .item ul li{
    margin: 2px;
}

.region-body .item ul li a{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 10px;
    font-size: 14px;
    color: #666666;
    border-radius: 4px;
}

.region-body .item ul li.active a,
.region-body .item ul li a:hover{
    background-color: #f56c6c;
    color: #ffffff;
}

.region-footer{
    margin-top: 20px;
    border-top: 3px solid #f56c6c;
    padding-bottom: 20px;
}

.region-footer .menu ul{
    list-style: none;
    margin: 10px 0;
    padding: 10px 0;
    display: flex;
    justify-content: center;
}

.region-footer .menu ul li{
    padding: 0 15px;
    font-size: 14px;
    position: relative;
}

.region-footer .menu ul li::after{
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 1px;
    background-color: #e8e8e8;
    content: "";
}

.region-footer .footer{
    font-size: 14px;
    text-align: center;
}