.chouqiandivcents{
    background-color: #f9f5ed;
    border: 1px solid #e8dcc5;
    padding: 0.75rem 0;
    border-radius: 6px;
}

.night .chouqiandivcents{
    border: 1px solid #444;
    background-color: #181a1b;
}
/**********************************/

.chouqianbut{
    text-align: center;
    padding: 1rem 0;
    margin-bottom: 0.75rem;
}

.chouqianbut div{
    padding: 0.4rem 1.2rem;
    display: inline-block;
    border-radius: 10px;
    cursor: pointer;
    background: rgba(250, 242, 228, 0.6);
    border: 1px solid #ecd9b4;
    color: #6b4c2c;
    margin: 0 0.25rem;
}

.night .chouqianbut div{
    border: 1px solid #444;
    background-color: #444;
    color: #ccc;
}

.chouqianbut div i{
    display: block;
    font-size: 0.5rem;
    margin-top: 0.25rem;
    color: #b77b3a;
    font-style: normal;
}

.chouqianbut div.act{
    background: linear-gradient(135deg, #ebd0a8, #ecd9b4);
    border-color: #c68e46;
}

.night .chouqianbut div.act{
    background: linear-gradient(135deg, #222222, #333333);
    border: 1px solid #444;
}

/***************************************/

.chouqiandiv{
    border-radius: 6px;
}

.chouqiancontent{
    min-height: 8rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px dashed #e8dcc5;
    border-bottom: 1px dashed #e8dcc5;
    max-width: 20rem;
    margin: auto;
}

.night .chouqiancontent{
    border-top: 1px dashed #232627;
    border-bottom: 1px dashed #232627;
}

.chouqiantips{
    text-align: center;
}

.chouqiantips h3{
    font-size: 1.5rem;
    color: #8b4512;
}

.night .chouqiantips h3{
    color: #aaa;
}

.chouqiantips p.nodais{
    background: rgba(245, 235, 215, 0.7);
    margin: 0.75rem .5rem 0.75rem;
    padding: 0.5rem 1rem;
    border-radius: 80px;

    font-size: 0.6rem;
    color: #7b5a3b;
    /* text-align: center; */
    border-left: 4px solid #e6bc84;
    border-right: 4px solid #e6bc84;
}

.night .chouqiantips p.nodais{
    background-color: #252525;
    color: #aaa;
    border-left: 4px solid #444;
    border-right: 4px solid #444;
}

.chouqiantips p{
    color: #b38464;
    font-size: 0.7rem;
    margin-top: 0.5rem;
}


.chouqiandivbut{
    text-align: center;
    padding: 1rem 0 1rem 0;
    margin-top: 0.75rem;
}

.chouqiandivbut span{
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 0.3rem 1.5rem;
    font-size: 0.8rem;
    cursor: pointer;
    display: inline-block;
    background: linear-gradient(115deg, #c48a4b, #a5682f);
}

.night .chouqiandivbut span{
    background: linear-gradient(115deg, #222, #444);
    color: #aaa;
}

.nm-ripple {
    display: inline-block;
    position: relative;
    width: 5rem;
    height: 5rem;
}

.nm-ripple div {
	position: absolute;
    border: 4px solid #d4b483;
	opacity: 1;
	border-radius: 50%;
	animation: nm-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.nm-ripple div:nth-child(2) {
	animation-delay: -0.5s;
}

@keyframes nm-ripple {
	0% {
	  	top: 2.5rem;
	  	left: 2.5rem;
	  	width: 0;
	  	height: 0;
	  	opacity: 1;
	}
	100% {
	  	top: 0px;
	  	left: 0px;
	  	width: 5rem;
	  	height: 5rem;
	  	opacity: 0;
	}
}

/*****************************************/

.scroll-paper {
    width: 260px;
    height: 100%;
    border-radius: 5px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-origin: center;
    opacity: 0;
    animation: fadeIn 0.1s ease-out 0.5s forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.scroll-rod {
    position: absolute;
    width: 15px;
    height: 160px;
    background: linear-gradient(to bottom, #8b4513, #6d3310);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50%;
    transform: translateY(-50%);
}

.scroll-rod-left {
    left: 50%;
    animation: rodMoveLeft 2s ease-out forwards;
}

@keyframes rodMoveLeft {
    0% { 
        left: 50%;

    }
    30% {
        left: 50%;

    }
    100% { 
        left: calc(50% - 145px);
    }
}

.scroll-rod-right {
    right: 50%;
    animation: rodMoveRight 2s ease-out forwards;
}

@keyframes rodMoveRight {
    0% { 
        right: 50%;
    }
    30% {
        right: 50%;
    }
    100% { 
        right: calc(50% - 145px);
    }
}

.scroll-text {
    text-align: center;
    position: relative;
    height: 140px;
    width: 100%;
    background: linear-gradient(to bottom, #f5e8d0, #f0e5cc);
    transform: scaleX(0);
    animation: paperUnfold 2s ease-out forwards;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
}

@keyframes paperUnfold {
    0% { 
        transform: scaleX(0);
    }
    30% {
        transform: scaleX(0);
    }
    100% { 
        transform: scaleX(1);
    }
}

.scroll-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(90deg, transparent 95%, rgba(139, 69, 19, 0.1) 100%),
        linear-gradient(0deg, transparent 95%, rgba(139, 69, 19, 0.1) 100%);
    background-size: 30px 30px;
    opacity: 0.5;
}

.scroll-text::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px dashed rgba(139, 69, 19, 0.2);
    border-radius: 3px;
}

.scroll-text>div{
    padding-top: 0.5rem;
}

.scroll-text>div p:first-child{
    font-size: 2rem;
}

@media screen and (max-width: 340px){
    .scroll-paper {
        width: 180px;
    }

    @keyframes rodMoveLeft {
        0% { 
            left: 50%;
    
        }
        30% {
            left: 50%;
    
        }
        100% { 
            left: calc(50% - 105px);
        }
    }

    @keyframes rodMoveRight {
        0% { 
            right: 50%;
        }
        30% {
            right: 50%;
        }
        100% { 
            right: calc(50% - 105px);
        }
    }
}


@media screen and (max-width: 485px){
    .chouqianbut {
        padding: 0.1rem 0;
    }

    .chouqianbut div {
        padding: 0.4rem 0.5rem;
        margin: 0 0.1rem;
    }

    .chouqiandivbut {
        padding: 0.1rem 0 0.1rem 0;
    }
    .chouqiantips h3 {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 355px){
    .chouqianbut div i {
        display: none;
    }
    .chouqianbut div {
        padding: 0.2rem 0.5rem;
    }
    
    .chouqiantips p.nodais {
        margin: 0.75rem .25rem 0.75rem;
        padding: 0.25rem 0.5rem;
    }
}