/* AVIOSYS/睿意科技標題 Albert 2024/11/12 begin */
.grid-central{
    display: grid;
    place-items: center;
}
.vertical-rotate-container{
    position: relative;
    width: 200px;
    height: 60px;
    transform-style: preserve-3d;
    transform: rotateX(0deg);
    transition: 0.5s linear;
}
.vertical-rotate-cell:hover > .vertical-rotate-container{
    transform: rotateX(360deg);
}
.vertical-rotate-central{
    width: 200px;
    height: 60px;
    /*background-color: #796eef;*/
    background-color: #5f5f5f;
    box-shadow: 0 0 20px #5f5f5f;
    border-radius: 5px;
}
.text-container{
    position: absolute;
    width: 100%;
    height: 100%;
}
.vertical-rotate-text{
    color: white;
}
.vertical-rotate-front, .vertical-rotate-behind{
    font-size: 30px;
    cursor: cursor;
}
.vertical-rotate-front{
    transform: translateZ(20px);
}
.vertical-rotate-behind{
    transform: translateZ(-20px) rotateY(180deg) rotateZ(180deg);
}
/* Albert 2024/11/12 end */