  body {
    font-size: 3.3vw;
    background: #fff;
    -webkit-text-size-adjust: 100%;
    -webkit-user-select: none;
    user-select: none;
}
body,div{
    -webkit-text-size-adjust: 100%;
    user-select: none;  
}
strong {
    font-weight: bold;
}
.wrap-container,.wrap {
    position: relative;
}
.cover {
    position: fixed;
    z-index: 9999;
    display: none;
    width: 100%;
    height: 100%;
    background: rgba(72,72,74,.8);
}
.mask {
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    display: none;
    width: 100%;
    height: 100%;
    opacity: .7;
    background-color: #000;
}
.mark{
    padding-top:7vw;
    display: inline-block;
}
.cardlist{
    position:relative;
}
.nav{
    position: absolute;
    left:0;
    top:0;
    flex-shrink: 0;
    width: 26vw;
    font-size: 3.3vw;
    text-align: center;
    background:#EFEFEF;
    color: #919191;
}
.navFixed{
    position:fixed;
    overflow-y: auto;
    height: 100%;
}
.nav li{
    display:inline-block;
    width:100%;
    overflow: hidden; 
    position: relative; 
}

.nav li.active{
    color:#000;
    font-weight:bold;
    background:#fff;
}
.nav li.active::before{
    content:'';
    position:absolute;
    left:0;
    top: 50%;
    transform: translate(0,-50%);
    width:1vw;
    height: 4vw;
    background:#E60813;
}
.nav li a{
    display:inline-block;
    word-break: break-word;
    padding: 2vw 0vw 2vw 2vw;
    font-size: 2.5vw;
}
.cardContent{
    position: absolute;
    right:0;
    top:0;
    width: calc(100% - 26vw);
    padding: 0vw 2.5vw;
    box-sizing: border-box;
}
.wrap{
    padding: 7vw 0vw 0vw;
    display: block;
    overflow-x:hidden;
}
.cards2{
    display:flex;
    justify-content: space-around;
    padding-bottom: 2vw;
}
.cards2 li{
    flex-shrink: 0;
    text-align:center;
    width:15vw;
    font-weight: bold;
}
.cards2 li img{
    width: 13vw;
    height: 8vw;
    display:inline-block;
    border-radius: 1vw;
}
.cards2 li div{
    padding:1vw 0;
}
.cards{
    display:flex;
    justify-content: space-around;
    padding-bottom: 2vw;
}
.cards li{
    flex-shrink: 0;
    text-align:center;
    width:30vw;
    font-weight: bold;
}
.cards li img{
    width: 26vw;
    height: 16vw;
    display:inline-block;
    border-radius: 1vw;
}
.cards li div{
    padding:1vw 0;
}
.cards.singleCard{
    justify-content: center;
}
.singleCard li img{
    width: 30vw;
    height: 19vw;
}
.cardMark{
    padding: 0vw 2vw;
    box-sizing: border-box;
}
.chunk{
    position:relative;
    margin: 5vw 0vw 7vw;
    border: 1px solid #46A7FF;
    border-radius: 2vw;
    box-shadow: 1vw 1vw 0 #CBEAFF;
    padding: 10vw 3vw 4vw;
    color: #424242;
}
.chunkTitle{
    position:absolute;
    left: -1.5vw;
    top: 2vw;
    background: linear-gradient(90deg, #81D5FF, #43A9FF);
    color: #fff;
    padding: .5vw 5vw;
    border-bottom-right-radius: 7vw;
    border-top-right-radius: 7vw;
    font-size: 4vw;
    font-weight: bold;
    text-shadow: .3vw .3vw #389DFB;
}
.chunkTitle:before{
    content:'';
    position:absolute;
    left:0;
    bottom: -1.5vw;
    width: 1.5vw;
    height: 1.5vw;
    background: linear-gradient(225deg, #007BFF 50%, transparent 50%);
}

.cTitle{
    font-weight:bold;
    color: #007BFF;
    padding: 2vw 0vw 0vw;
}
.cTitle2{
    color: rgba(0, 123, 255,.7);
}
.cContent{
    padding: 1vw 0vw;
}
.cImg{
    padding:2vw 0vw;
}
.comment{
    display: inline-block;
    /* transform: scale(.8); */
    /* width: 122%; */
    /* transform-origin: left; */
    /* word-break: break-all; */
}
.small{
    color:#898989;
    font-size: 2.5vw;
}
.singleText{
    position: relative;
    top:50%;
    transform: translate(0,-50%);
}
.link{
    padding: 2vw 0;
    color:#F5AC17;
    text-decoration: underline;
}
.cTitle img{
    width: 3.2vw;
    height: 3.2vw;
    display: inline-block;
    padding-right: 1vw;
}
.chunkContent ul{
    display:flex;
    justify-content: space-around;
}
.chunkContent ul li{
    flex-shrink: 0;
}
.chunkContent ul li img{
    width: 20vw;
    position: relative;
    left:0;
    top:50%;
    transform: translate(0,-50%);
}
.chunkContent ul.cRight{
    text-align: right;
}
.hr{
    border-top:1px dashed #567CD4;
    margin:2vw 0;
}
.baseline{
    text-decoration: line-through;
    text-decoration-color: #E60813;
}

.billContent{
    color:#727171;
}
.billColor{
    color:#000;
}
@keyframes stress {
    0% {
        -webkit-transform: scale(.95);
                transform: scale(.95);
    }

    50% {
        -webkit-transform: scale(1);
                transform: scale(1);
    }

    100% {
        -webkit-transform: scale(.95);
                transform: scale(.95);
    }
}