 /* other的样式 */
 .other {
    height: 100vh;
    background: url(../img/index.png) center/1024px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.other p {
    color: white;
    font-size: 60px;
    font-weight: bold;
    text-shadow: 0 8px 8px rgba(0, 0, 0, .8);
}

/* 主宣 */
.scenic-item{
    max-width: 61.8%;
    margin: 0 auto 12px;
    text-align: center;
    font-size: 0;
    overflow: hidden;
}
.img-tile{
    margin: 30px auto 10px auto;
    font-weight: bold;
    font-size: 18px;
    color: #333;
    line-height: 2;
}
.img{
    width: 100%;
    height: 100%;
}

.section-tile{
    margin: 30px auto 10px auto;
    font-weight: bold;
    font-size: 18px;
    color: #333;
    line-height: 2; 
    text-align: center;
}
.introuce{
    width: 950px;
    margin: 3px auto;
}
.groupList {
    display: flex;
    flex-wrap: wrap; /* 从左至右并且从上至下排列 */
    gap: 12px;
    margin: 0 auto;
    width: 950px;
}
.item{
    width: calc(33.3% - 8px);
    flex-grow: 0;
    flex-shrink: 0;
}

.floor{
    margin: 8px 0 0 0;
    position: relative;
    display: inline-block;
}
.floor:hover .clear-button, 
.floor:hover .toggle-button{
    visibility: visible;
}
.clear-button {
    visibility: hidden;
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translateY(-50%);
    cursor: pointer;
    border: none;
    background: transparent;
}
.toggle-button{
    visibility: hidden;
    position: absolute;
    top: 46%;
    right: 16px;
    transform: translateY(-50%);
    cursor: pointer;
    border: none;
    background: transparent; 
}
.register-dialog{
    position: fixed;
    left: 50%;
    top: 50%;
    margin-top: -200px;
    width: 340px;
    margin-left: -170px;
    padding: 30px 0;
    background: #0062e1;
    box-shadow: 0 0 10px #b0acac;
    opacity: .9;
    color: #00a0e9;
    font-size: 14px;
    text-align: center;
    box-sizing: border-box;
}
.dialog-title {
    color: white;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 12px;
    text-shadow: 0 2px 2px rgb(207 207 207 / 80%);
    animation: rotatefun .8s linear;
}
#phonenumber, #password{
    display: block;
    width: 180px;
    box-sizing: border-box;
    padding: 7px;
    background-color: #f4f4f4;
    border-radius: 3px;
    font-size: 12px;
    border: 0;
    outline: none;
}
#checkbox{
    vertical-align: middle;
}
#checklabel,#forget{
    color:#f5f5f5;
    font-size: 12px;
    margin-left: 1px;
}
#forget{
    margin-left: 50px;
    cursor: pointer;
}
#login-submit{
    display: block;
    width: 180px;
    box-sizing: border-box;
    line-height: 28px;
    color: #fff;
    background: #00afff;
    cursor: pointer;
    border-radius: 3px;
    font-size: 16px;
    border: 0;
    outline: none;
}
@keyframes rotatefun {
    0% {
        transform: rotateX(0deg);
    }
    100% {
        transform: rotateX(360deg);
    }
}

/* 以下是忘记密码的相关样式*/
#rotateDiv {
    display: none;
    width: 96%;
    padding: 3px 17px 3px 3px;
    color: #fffdfd;
    font-size: 12px;
    background-color: #ffafd6;
    transition: transform 0.6s ease,opacity 0.6s ease;
}
.fadein{
    animation: rotate360 0.6s linear;
}
#sendValidCode{
    background: rgb(64, 158, 255);
    border: 0;
    padding: 0px 6px;
    border-radius: 3px;
    margin-left: 3px;
    color: #ffffff;
    font-size: 12px;
    line-height: 20px;
    height: 20px;
}
#closeValidcode{
    cursor: pointer;
    position: absolute;
    top: 50%;
    right: 2px;
    margin-top: -7px;
    font-size: 20px;
    color: white;
    background: #00a0e9;
    border: none;
    border-radius: 50%;
    width: 14px;
    height: 14px;
    text-align: center;
    line-height: 14px;
    outline: none;
    user-select: none;
}
@keyframes rotate360 {
    from {
        transform: rotate(-360deg) scale(0.5);
        opacity:0;
    }
    to {
        transform: rotate(0deg) scale(1);
        opacity:1;
    }
}
