/* Webkit 浏览器 */
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb {
    background: #8B562D;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #8B562D;
}

/* Firefox */
.scrollable {
    scrollbar-width: thin;
    scrollbar-color: #888 #f1f1f1;
}

.container {
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    min-width: 1400px;
    min-height: 1000px;
    position: fixed;
    font-family: serif;
}

.panel-1 {
    width: 100%;
    height: 100%;
    background: url("../img/3d-bg.jpg") no-repeat top center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.panel-1 img {
    cursor: pointer;
}

.progress-container {
    width: 600px;
    height: 12px;
    margin-top: 60px;
    background-color: rgba(224, 224, 224, 0.5);
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 20px;
}

.progress-bar {
    height: 100%;
    background-color: #E2B37B;
    width: 0%; /* 初始宽度为 0% */
    transition: width 0.3s; /* 动画效果 */
}

.progress-text {
    font-size: 28px;
    color: #FBB46C;
    font-family: 'STZhongsong', serif;
}

#progress-number {
    font-size: 40px;
}

.panel-2 {
    width: 100%;
    height: 100%;
    font-weight: bold;
    background: url("../img/3d-bg.jpg") no-repeat top center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1; /* 确保背景在 canvas 后面 */
}

.header {
    display: flex;
    width: 1400px;
    padding: 25px 0;
    border-bottom: 1px solid rgba(139, 86, 45, 0.8);
}

.info-view {
    position: absolute;
    top: 172px;
    left: calc(50% - 700px + 40px);
    height: 600px;
    width: 420px;
    border: 1px solid #8B562D;
    z-index: 3;
    padding: 44px 30px 30px 30px;
    border-radius: 20px;
    background: url("../img/3d-info-bg.png") no-repeat center center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}


.info-view .info-header {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.info-view .top {
    width: 66px;
    height: 66px;
    margin-right: 12px;
    background: url("../img/top-icon.png") no-repeat center center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FDC795;
    font-size: 18px;
}

.info-view .top img {
    width: 30px;
    height: 30px;
    padding-top: 2px;
}

.info-view .top-txt {
    color: #FF9E28;
    font-size: 24px;

}

.info-view .title-1 {
    font-size: 48px;
    color: #FDC795;
    margin-top: 18px;
}

.info-view .title-2 {
    font-size: 24px;
    color: #FDC795;
    margin-top: 13px;

}

.info-view .line {
    width: 408px;
    height: 4px;
    background: url("../img/3d-line.png") no-repeat center center;
    background-size: cover;
    margin-top: 41px;
}

.info-view .content {
    flex: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-top: 36px;
}

.info-view .content .row {
    width: 100%;
    display: flex;
    align-items: flex-start;
    font-size: 14px;
    line-height: 24px;
}

.info-view .content .row .name {
    width: 80px;
    color: #FF9500;
}

.info-view .content .row .text {
    color: #FFCD90;
    flex: 1;
    letter-spacing: 1px;
    text-align: justify;
}

.btn-view {
    position: absolute;
    bottom: 60px;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
    user-select: none;
}

.btn-view > div {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    color: #FFF;
    margin-right: 20px;
    user-select: none;
}

.btn-view .btn-item .btn-icon {
    background-size: contain;
    width: 100px;
    height: 100px;
    cursor: pointer;
}

.btn-item:nth-child(1) .btn-icon {
    background: url("../img/3d-btn-1.png") no-repeat center center;
}

.btn-item:nth-child(1) .btn-icon:hover {
    background: url("../img/3d-btn-1-1.png") no-repeat center center;
}

.btn-item:nth-child(2) .btn-icon {
    background: url("../img/3d-btn-2.png") no-repeat center center;
}

.btn-item:nth-child(2) .btn-icon:hover {
    background: url("../img/3d-btn-2-1.png") no-repeat center center;
}

.btn-item:nth-child(3) .btn-icon {
    background: url("../img/3d-btn-3.png") no-repeat center center;
}

.btn-item:nth-child(3) .btn-icon:hover {
    background: url("../img/3d-btn-3-1.png") no-repeat center center;
}

.btn-item-disabled .btn-icon {
    background: url("../img/3d-btn-grey-1.png") no-repeat center center !important;;
}

.btn-item-disabled .btn-text {
    color: #c2c1c1 !important;
}

.btn-view img {
    width: 70px;
    height: 70px;
}

canvas {
    position: absolute;
    top: 118px;
    right: calc(50% - 600px);
    width: 745px !important;
    height: 745px !important;
}
