 
 
 /* 关于我们的css */
 
 
 body {
     margin: 0;
     padding: 0;
     display: flex;
     flex-direction: column;
     background-color: rgb(41, 35, 35);;
 }

 main {
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     margin-top: 80px;
 }


 .text {
     text-align: left;
     max-width: 800px;
     margin: 0 auto;
     padding: 20px;
 }

 .box {

     margin: 20px auto;
     padding: 40px;
     width: 80%;
     border-radius: 12px;
     text-align: center;
     background-color: rgb(214, 188, 188);
 }

 .box .text {
     text-indent: 2em;
 }

 /* .box img {
     border-radius: 12px;
     width: 300px;
     height: auto;
     margin: 0 auto 30px;
     display: block;
 } */
.container {
    margin: 0 auto;
    padding: 20px;
    position: relative;
    width: 420px;
    border: #fff solid 2px;
    border-radius: 4px;
    height: 350px;
}

.title {
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    font-size: 2em;
    font-weight: normal;
    line-height: 1;
}
.title1 {
    position: absolute;
    top: 90px;
    left: 0;
    width: 100%;
    font-size: 2em;
    font-weight: normal;
    line-height: 1;
}

.credit {
    position: absolute;
    top: 100%;
    left: 0;
    font-size: 0.8em;
    text-align: left;
}

.book {
    position: relative;
    perspective: 630px;
    perspective-origin: center 50px;
    transform: scale(1.2);
    filter: drop-shadow(0px 10px 5px rgba(0, 0, 0, 0.25));
}

.page {
    width: 210px;
    height: 300px;
    background-color: #bbb;
    position: absolute;
    top: 0px;
    right: 50%;
    transform-origin: 100% 100%;
    border: solid #555 2px;
    background-size: 420px 300px;
    background-position: center;
    transform-style: preserve-3d;
}

.page:nth-child(1) {
    transform: rotateX(60deg) rotateY(3deg);
} 

.page:nth-child(2) {
    transform: rotateX(60deg) rotateY(4.5deg);
}

.page:nth-child(3) {
    transform: rotateX(60deg) rotateY(6deg);
    background-size: 420px 300px;
    background-position: -2px -2px;
    background-image: url("../瓦/fot战队图.png");
}

.page:nth-child(4) {
    transform: rotateX(60deg) rotateY(177deg);
}

.page:nth-child(5) {
    transform: rotateX(60deg) rotateY(175.5deg);
}

.page:nth-child(6) {
    transform: rotateX(60deg) rotateY(174deg);
    overflow: hidden;
}

.page:nth-child(6)::after {
    width: 210px;
    height: 300px;
    position: absolute;
    top: 0px;
    right: 0%;
    transform-origin: center;
    transform: rotateY(180deg);
    background-size: 420px 300px;
    background-position: 100% -2px;
    background-image: url("../瓦/fot战队图.png");
    content: "";
}

.pages {
    transform-style: preserve-3d;
}

 
 .box ul {

     padding: 0;
     display: flex;
     flex-wrap: wrap;

     justify-content: center;
 }

 .box ul li {
     margin: 15px;
    flex: 1 1 200px;
     color: #921f1f;
 }

 .box ul li p {
     color: #FD4452;
     font-size: 16px;
     display: block;
     padding: 15px;
     border-radius: 8px;
     background: linear-gradient(to right, #FD4452, #ffec99);
 }

 .box ul li p:hover {
     background: linear-gradient(to right, #ffec99, #FD4452);
     color: #f53708;

 }
