/* CSS 样式表文件 */
html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    display: flex;
    font-family: Avenir, Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    outline: none !important;
}

.card {
    /* box-shadow: 0 4px 10px rgba(0, 2, 4, 0.06), 0 0 1px rgba(0, 2, 4, 0.11); */
    padding: 5px 30px 30px;
    max-width: 640px;
    margin: 0 auto;
    max-height: 100%;
}
.card .item {
    max-width: 100%;
    /* 	border-bottom: 0.1rem solid #ddd; */
    padding-bottom: 15px;
    display: -webkit-flex;
    display: flex;
    line-height: 1.8rem;
}
.card .hr {
    margin-top: 2rem;
}
.card .item .time {
    color: #858585;
}
.card .item .content {
    width: 90%;
}
.card .item .btn {
    width: 10%;
    padding: 1.1em 0;
    /* 	border: 3px solid green; */
    text-align: center;
}

.card .item .btn svg {
    padding: 0;
    margin: 0;
}

.card .item > .pre-content {
    display: none !important;
}
.pre-content,
.pre-content *,
.pre-des,
.pre-des * {
    max-width: 100%;
    overflow: unset;
}
.pre-des ul,
.pre-des li {
    overflow: auto !important;
}
.donutSpinner {
    display: inline-block;
    border: 4px solid hsl(222 100% 95%);
    border-left-color: hsl(243 80% 62%);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: donut-spin 1.2s linear infinite;
}

@keyframes donut-spin {
    to {
        transform: rotate(1turn);
    }
}

.bouncingLoader > div,
.bouncingLoader:before,
.bouncingLoader:after {
    display: inline-block;
    width: 13px;
    height: 13px;
    background: hsl(243, 80%, 62%);
    margin-bottom: -5px;
    border-radius: 50%;
    animation: bouncing-loader 0.6s infinite alternate;
}

.bouncingLoader > div,
.bouncingLoader:before,
.bouncingLoader:after {
    content: "";
}

.bouncingLoader > div {
    margin: 0 5px;
}

.bouncingLoader > div {
    animation-delay: 0.2s;
}

.bouncingLoader:after {
    animation-delay: 0.4s;
}

@keyframes bouncing-loader {
    to {
        opacity: 0.1;
        transform: translate3d(0, -16px, 0);
    }
}
.card .item .content h3 a {
    background-color: transparent;
    color: #24292e;
    text-decoration: none;
    border-bottom: 2px solid #ccc;
    transition: opacity 0.2s;
}
.card .item .content h3 a:hover {
    opacity: 0.8;
}
.card .item .content h3 {
    word-break: break-all;
}
