.theme-dark {
    --font-color-opacity1: #ffffff;
    --font-color-opacity2: rgba(255, 255, 255, 0.8);
    --font-color-opacity3: rgba(255, 255, 255, 0.6);
    --border-bottom: rgba(255, 255, 255, 0.1);
}

.theme-light {
    --font-color-opacity1: #333333;
    --font-color-opacity2: rgba(51, 51, 51, 0.8);
    --font-color-opacity3: rgba(51, 51, 51, 0.6);
    --border-bottom: rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

.kaihei-scroll::-webkit-scrollbar {
    width: 4px;
    background: transparent;
}

.kaihei-scroll::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.kaihei-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.guide-detail {
    min-height: calc(100vh - 380px);
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;

    margin: 0 auto;
    padding: 0 20px 40px 20px;
}

.guide-detail .guide-header {
    width: 100%;
}

.guide-header .head {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    flex-direction: column;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid var(--border-bottom);
}

.head .title {
    width: 100%;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 450;
    color: var(--font-color-opacity1);
}

.guide-header .head .des {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.guide-header .head .des .left {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.left .icon {
    color: #004A8E;
    background-color: #6DB9FF;
    border-radius: 4px;

    padding: 0 4px;
    height: 22px;
    line-height: 22px;
    text-align: center;
    font-weight: bold;
    font-size: 12px;
    margin-right: 10px;
}

.left .view {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;

    gap: 2px;
    color: var(--font-color-opacity3);
}

.view .view-icon {
    width: 18px;
    height: 18px;
}

.view .num {
    font-size: 12px;
}

.des .time {
    font-size: 12px;
    color: var(--font-color-opacity3);
}

.guide-content {
    width: 100%;
}

.guide-content p {
    font-size: 14px;
    color: var(--font-color-opacity2);
}

.guide-content img {
    width: 100%;
    height: auto;
    margin: 10px 0;
    border-radius: 14px;
}

@media (max-width: 768px) {
    .guide-detail {
        padding: 0 16px !important;
    }

    .guide-detail .guide-header .head {
        border-bottom: none !important;
    }

    .left .icon {
        color: #afb0b3 !important;
        background-color: #eaeaea !important;
        height: 28px !important;
        padding: 0 4px !important;
        border-radius: 8px !important;
        line-height: 28px !important;
        text-align: center !important;
    }

    .left .view {
        color: #999 !important;
    }

    .des .time {
        color: #999 !important;
    }

    .head .title {
        color: #3b3b3b !important;
        font-size: 15px !important;
    }

    .guide-content p {
        color: #3c3c3c !important;
    }
}
