.accordion-container {
    max-width: 1300px;
    width: 100%;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
}

h1 {
    text-align: center;
    color: white;
    margin-bottom: 25px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.description {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.accordion {
    position: relative;
    width: 1200px;
    height: 770px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
}

.accordion-child {
    position: absolute;
    width: 315px;
    height: 770px;
    background: #fff;
    border-radius: 4px;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    overflow: hidden;
    right: 0;
}

/* 设置每个面板的位置和颜色 */
.accordion-child:nth-child(1) {
    right: calc(0 * 70px);
    background: url('../feiyi_imgs/accordionImg1.png');
    z-index: 10;
}
.accordion-child:nth-child(2) {
    right: calc(1 * 70px);
    background: url('../feiyi_imgs/accordionImg2.png');
    z-index: 9;
}
.accordion-child:nth-child(3) {
    right: calc(2 * 70px);
    background: url('../feiyi_imgs/accordionImg3.png');
    z-index: 8;
}
.accordion-child:nth-child(4) {
    right: calc(3 * 70px);
    background: url('../feiyi_imgs/accordionImg4.png');
    z-index: 7;
}
.accordion-child:nth-child(5) {
    right: calc(4 * 70px);
    background: url('../feiyi_imgs/accordionImg5.png');
    z-index: 6;
}
.accordion-child:nth-child(6) {
    right: calc(5 * 70px);
    background: url('../feiyi_imgs/accordionImg6.png');
    z-index: 5;
}
.accordion-child:nth-child(7) {
    right: calc(6 * 70px);
    background: url('../feiyi_imgs/accordionImg7.png');
    z-index: 4;
}
.accordion-child:nth-child(8) {
    right: calc(7 * 70px);
    background: url('../feiyi_imgs/accordionImg8.png');
    z-index: 3;
}
.accordion-child:nth-child(9) {
    right: calc(8 * 70px);
    background: url('../feiyi_imgs/accordionImg9.png');
    z-index: 2;
}
.accordion-child:nth-child(10) {
    right: calc(9 * 70px);
    background: url('../feiyi_imgs/accordionImg10.png');
    z-index: 1;
    transform: translateX(-240px); /* 默认展开最左侧盒子 */
}

/* 悬停效果 - 推开左侧所有盒子 */
.accordion-child:hover {
    transform: translateX(-240px);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}

/* 当悬停时，左侧所有盒子向左移动 */
.accordion-child:hover ~ .accordion-child {
    transform: translateX(-240px);
}

/* 内容样式 */
.panel-content {
    padding: 15px;
    color: #fff;
    position: relative;
}

.title{
    width: 48px;
    height: 180px;
    left: 10px;
    top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('../feiyi_imgs/accordionImgTitle.png');
    background-size: 100% 100%;
}
.title h3{
    padding: 0px;
    margin: 0px;
    width: 10px;
    display: flex;
    justify-content: center;
}

.des{
    position: absolute;
    left: 80px;
    top: 20px;
    right: 30px;
}

.detail{
    width: 60px;
    height: 60px;
    position: absolute;
    top: 680px;
    right: 25px;
    background: url('../feiyi_imgs/detail.png');
    background-size: 100% 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.panel-btn:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.instructions {
    text-align: center;
    color: white;
    margin-top: 25px;
    font-size: 16px;
    opacity: 0.8;
}

.features {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 20px;
}

.feature {
    background: rgba(255, 255, 255, 0.15);
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    color: white;
    width: 200px;
}

.feature i {
    font-size: 24px;
    margin-bottom: 10px;
    display: block;
}


/* 红色固定封面 */
.cover{
    width: 270px;
    height: 770px;
    background-color: rgba(136,17,11,1);
    position: fixed;
    right: 0%;
    z-index: 99;
    display: flex;
    justify-content: center;
    align-items: center;
}
.cover-title{
    width: 220px;
    height: 220px;
    background: url('../feiyi_imgs/feiyi_LOGO.png');
    background-size: 100% 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.cover-title p{
    margin: 0%;
    padding: 0%;
    width: 20px;
    color: rgba(140,67,0,1);
    font-size: 24px;
    font-weight: 600;
}
.titleCloud{
    width: 60px;
    height: 33px;
    position: absolute;
    right: 20px;
    bottom: 20px;
}
.fy_more{
    position: absolute;
    right: 65px;
    bottom: 28px;
    color: #fff;
}