html,
    /* 默认的基准字体大小 */
    /* 默认的基准字体大小 */
body {
    font-size: 1rem;
}

h3 {
    font-size: 1rem;
}

h4 {
    position: relative;
    width: 94%;
    font-size: 1.2rem;
    color: #f60;
    font-weight: bold;
    text-align: start;
    margin-block-start: 0.5rem;
    margin-block-end: 0.5rem;
    margin-inline-start: 1rem;
    margin-inline-end: 1rem;
    border-bottom: 0.1rem dashed #e0e0e0;
}

.msg {
    color: red;
    font-size: 1.5rem;
    width: 100%;
}

body {
    background-color: #aeeeff;
}

#warp {
    width: 92%;
    height: auto;
    margin: 0.8rem auto;
}

#tag {
    overflow: hidden;
    background-color: #000;
    display: block;
    list-style-type: disc;
    margin: 1em 0;
    margin-bottom: 0;
    padding-inline-start: 0;
}

ul {
    margin-block-start: 0;
}

#tag>.current {
    color: #000;
    background: #ccc;
}

#tag>li {
    color: #fff;
    list-style: none;
    float: left;
    margin-right: 0;
    padding: 1rem 2rem;
    cursor: pointer;
    display: block;
    text-align: inherit;
}

.contentClass {
    border: 0px solid #000;
    border-top: none;
    height: auto;
    background: #fff;
    padding: 1rem 0.3rem;
    display: none;
}

.contentClass>p {
    text-indent: 0.5rem;
    min-height: 0.5rem;
    line-height: 0.4rem;
    margin: 0 auto;
    border-bottom: 0.04rem dashed #e0e0e0;
    padding: 0.1rem;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.contentClass>p>span {
    display: block;
    padding: 0.5rem 0.5rem;
    min-width: 20%;
    width: auto;
}

.contentClass>p>span>a {
    float: left;
    text-decoration: none;
    font-size: 1rem;
    color: #5669b5;
    font-weight: bold;
    padding: 0 0.3rem;
}

.icon-copy {
    float: left;
    font-size: 1rem;
    color: #5669b5;
}

.contentClass>p>span>a:hover,
.icon-copy:hover {
    color: #FC9;
    text-decoration: underline;
}

css-icon {
    display: inline-block;
    height: 1em;
    width: 1em;
    font-size: 20px;
    box-sizing: border-box;
    text-indent: -9999px;
    vertical-align: middle;
    position: relative;
}

css-icon::before,
css-icon::after {
    content: '';
    box-sizing: inherit;
    position: absolute;
    left: 50%;
    top: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.icon-copy::before {
    width: .7em;
    height: .8em;
    border: 2px solid;
    border-bottom-color: transparent;
    border-right-color: transparent;
    border-radius: .1em;
    left: 40%;
    top: 40%;
}

.icon-copy::after {
    width: .7em;
    height: .8em;
    border: 2px solid;
    border-radius: .1em;
    left: 60%;
    top: 60%;
}

.bubble {
    position: fixed;
    top: 5vh;
    left: 50%;
    transform: translateX(-50%);
    background-color: #e0e0e0;
    border: 1px solid #FC9;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    opacity: 0.85;
}

.bubble>.arrow {
    position: relative;
    height: 3px;
    background-color: rgba(81, 255, 0, 0.5);
    display: block;
    animation: changeWidth 1s linear 0s 1 normal;
}

@keyframes changeWidth {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}
