/** {*/
/*    padding: 0;*/
/*    margin: 0;*/
/*    box-sizing: border-box;*/
/*    font-family: Arial, Helvetica, sans-serif;*/
/*}*/

html,
body {
    width: 100%;
    height: 100%;
    background-color: #999!important;
    background-image: url(../images/bg.png)!important;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.wrapper {

    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    perspective: 4000px;
    background-position: center;
    flex-direction: column;
}

header {
    background-color: #F6F7F8;
    display: flex;
    justify-content: space-between;
    padding-right: 10px;
    font-size: 12px;
    align-items: center;
}

header>div:nth-child(2) {
    display: flex;
    justify-content: center;
}

header>div:nth-child(2)>div {
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width:100px;
    color: #ffffff;
}
header>div:nth-child(2)>div a{
    color: #ffffff;
}
header>div:nth-child(3) {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 20px;
}

header>div:nth-child(3)>div {
    display: flex;
}

header>div:nth-child(3) input {
    border: 0px;
    box-shadow: 0px 0px 2px #ccc;
    display: block;
    height: 28px;
    width: 292px;
    outline: 0px;
    text-indent: 5px;
    font-size: 12px;
}

header>div:nth-child(3) button {
    border: 0px solid #ccc;
    display: block;
    height: 28px;
    width: 66px;
    background-color: #173B93;
    outline: none;
    box-shadow: 0px 0px 2px #ccc;
    color: #fff;
    font-size: 12px;
}
header>div:nth-child(4){
    display: flex;
    flex-direction: row;
}
header>div:nth-child(4)>div{
    padding: 0px 10px 0px 10px;
}
/*.prev {*/
/*    !*background: #f00;*!*/
/*    left: 0;*/
/*    top: 50%;*/
/*    transform: translate(0, -50%);*/
/*}*/

/*.next {*/
/*    !*background: #00f;*!*/
/*    right: 0;*/
/*    top: 50%;*/
/*    transform: translate(0, -50%);*/
/*}*/

.page-image {
    box-shadow: 0px 0px 20px #666;
    height: fit-content;
    max-width: 1000px;
    width: fit-content;
    overflow: hidden;
}

/*.page-image>img {*/
/*    display: block;*/
/*    width: 100%;*/
/*}*/
.img {
    display: block;
    width: 100%;
    height: 100%;
}

.page-title {
    height: 80px;
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #333;
}

/*.changer {*/
/*    display: flex;*/
/*    position: fixed;*/
/*    height: 60px;*/
/*    width: 60px;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*    font-size: 60px;*/
/*    color: lightskyblue;*/
/*    user-select: none;*/
/*    transition: all .5s;*/
/*    text-shadow: 0px 0px 15px #666;*/
/*}*/

/*.changer:hover {*/
/*    color: lightcoral;*/
/*    transition: all .5s;*/
/*}*/

/*.changer:active {*/
/*    color: lightseagreen;*/
/*    transition: all .5s;*/
/*}*/

footer {
    background-image: url(../images/logo_pn.png);
    background-repeat: no-repeat;
    background-color: #0047a7;
    background-position: center 40px;
    display: flex;
    justify-content: center;
    height: 90px;
}

footer>div {
    width: fit-content;
    padding: 15px 10px 5px 10px;
    font-size: 12px;
    color: #fff;
}


.carousel {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: fit-content;
    padding: 10px;
    transform-style: preserve-3d;
    animation: rot 60s linear 0s infinite normal;
    align-items: center;
}

.carousel>div {
    background-color: #fff6;
    width: 600px;
    height: fit-content;
    transition: all .5s;
    border-radius: 4px;
    box-shadow: 0px 0px 5px #999;
    border: 2px solid aliceblue;
    position: absolute;
    top: 0;
    left: 0;
    justify-content: center;
}

.carousel>div>.page-image {
    min-height: 200px;
    max-height: 400px;
}

.carousel>div>.page-title>div {
    height: fit-content;
}

@keyframes rot {
    0% {
        /* 动画中存在固定不改变的属性，放在前面 */
        transform: rotateZ(0deg) rotateX(00deg) translateX(-50%) rotateY(0deg) translateY(-100px);
    }
    100% {
        transform: rotateZ(0deg) rotateX(0deg) translateX(-50%) rotateY(-360deg) translateY(-100px);
    }
}

.carousel:hover {
    /* .carousel被覆盖，动画暂停*/
    animation-play-state: paused;
}

.carousel:hover div>img {
    opacity: 0.5;
}

.carousel>div:hover img {
    opacity: 1;
}

/*.carousel>div:nth-child(1) {*/
/*    transform: rotateY(0deg) translateZ(600px);*/
/*}*/

/*.carousel>div:nth-child(2) {*/
/*    transform: rotateY(60deg) translateZ(600px);*/
/*}*/

/*.carousel>div:nth-child(3) {*/
/*    transform: rotateY(120deg) translateZ(600px);*/
/*}*/

/*.carousel>div:nth-child(4) {*/
/*    transform: rotateY(180deg) translateZ(600px);*/
/*}*/

/*.carousel>div:nth-child(5) {*/
/*    transform: rotateY(240deg) translateZ(600px);*/
/*}*/

/*.carousel>div:nth-child(6) {*/
/*    transform: rotateY(300deg) translateZ(600px);*/
/*}*/


/* .carousel>div:nth-child(6) {
    transform: rotateY(360deg) translateZ(100px);
} */