.jgdiv{
    padding: 2rem 0;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
    border: 1px solid #e6cf9b;
    background: #fef7e8;
    background-image: repeating-linear-gradient(45deg, rgba(210, 180, 110, 0.08) 0px, rgba(210, 180, 110, 0.08) 2px, transparent 2px, transparent 8px);
}

.night .jgdiv{
    border: 1px solid #444;
    background-color: #181a1b;
    background-image: repeating-linear-gradient(45deg, rgb(15 14 11 / 8%) 0px, rgb(77 67 42 / 8%) 2px, transparent 2px, transparent 8px);
}

.jgdiv::before{
    content: '';
    width: 100%;
    height: 6rem;
    display: block;
    position: absolute;
    right: 0%;
    bottom: -5rem;
    background-color: #FF9800;
    opacity: 0.1;
    border-radius: 100%;
    transform: rotate(360deg);
}

.night .jgdiv::before {
    background-color: #2d3032;
}

.jgdao{
    position: absolute;
    left: 1.5rem;
    top: 1.5rem;
    color: #a8865b;
    opacity: 0.1;
    font-size: 15rem;
}

.night .jgdao {
    color: #888;
}

.jg_h2{
    text-align: center;
    margin: 0rem auto 1.5rem auto;
    font-size: 1rem;
    line-height: 1;
    color: #a8875b;
    letter-spacing: 6px;
    width: 11rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e6cf9a;
}

.night .jg_h2{
    border-bottom: 1px solid #a8875b;
}

.jg_h2 span{
    font-size: 0.6rem;
    line-height: 1;
    vertical-align: 0.15rem;
}

.jg_ul{
    text-align: center;
}

.jg_ul li{
    width: calc(100% / 2);
    float: left;
    text-align: right;
    font-size: 0.9rem;
    padding-right: 0.3rem;
    padding-left: 0;
    line-height: 2;
    color: #a8875b;
    letter-spacing: 0.5rem;
}

.jg_ul li:nth-child(2n){
    text-align: left;
    padding-left: 0.75rem;
    padding-right: 0rem;
}

@media screen and (max-width: 550px){
    .jgdao{
        display:none;
    }
}

@media screen and (max-width: 320px){
    .jgdiv {
        padding: 1.5rem 0;
    }

    .jg_h2 {
        margin: 0rem auto 1rem auto;
    }

    .jg_ul li {
        letter-spacing: 0.25rem;
        padding-right: 0.5rem;
    }
}