/* 

*/
:root {
    --text: 12px;
    --title: 15px;
}
@font-face {
    font-family: "default";
    src: url(/src/font/SIMHEI.TTF);
}

* {
    margin: 0;
    padding: 0;
    font-size: var(--text);
    font-family: "default";
}

a {
    text-decoration: none;
    color: #5f5f5f;
}

.active{
    color: #fff !important;
}

body {
    background: #000;
    padding-top: 80px;
    /* box-sizing: border-box; */
}

.container {
    width: 100%;
    color: #fff;
    text-align: center;
}

header {
    width: 100%;
    position: fixed;
    background: #000;
    top: 0;
    /* left: 100px; */
    z-index: 9999;
}

.title-img {
    width: 100%;
    display: flex;
    justify-content: center;
}

.tab-box {
    width: 370px;
    color: #5f5f5f;
    display: flex;
    gap: 1rem;
    justify-content: space-evenly;
    /* padding: 0 10px; */
    box-sizing: border-box;
    margin: 0 auto;
}

.tab-box>p {
    white-space: nowrap;
}

.title {
    font-size: var(--title);
    white-space: nowrap;
    font-weight: bold;
    margin: 30px 0 20px 0;
}

.options {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 0 10px;
    box-sizing: border-box;
}

.option {
    width: 370px;
    position: relative;
}

.tab-title {
    color: #02f6fe;
    display: flex;
    align-items: center;
    position: relative;
    left: -5px;
}

.text-box {
    border: 1px solid #ccc;
    border-radius: 12px;
    padding: 10px 0;
    box-sizing: border-box;
    text-align: center;
}

.pie-chart {
    width: 267.5px;
    height: 330.5px;
    margin: 0 auto;
}

.img {
    transform: scale(0.5);
}

.alink:target {
    margin-top: 100px;
}

.alink:hover {
    color: #5f5f5f;
}

.alink:focus {
    color: #5f5f5f;
}

.alink:active {
    color: #5f5f5f;
}

.alink::after {
    color: #5f5f5f;
}

.alink:visited {
    color: #5f5f5f;
}

.anchor {
    position: absolute;
    top: -80px;
    visibility: hidden;
}