html {
    box-sizing: border-box;
    font-family: Helvetica, Verdana, "微软雅黑", "苹方", "Hiragino Sans GB", "Hiragino Sans GB W3", "宋体", Arial, sans-serif;
    -webkit-text-size-adjust: none;
}

body {
    background: #57acfd url("/static/images/home.jpg") center top no-repeat;
    background-size: 1920px auto;
    padding: 400px 0 200px;
}

.container {
    width: 1080px;
    margin: 0 auto;
}

.header {
    height: 160px;
}

.button {
    width: 270px;
    height: 70px;
    border: none;
    color: rgb(255, 255, 255);
    font-size: 35px;
    font-weight: bold;
    position: relative;
    cursor: pointer;
    transition: opacity 0.3s;
}

.button-download {
    background: url('/static/images/home-btn-1.png') no-repeat;
    top: 80px;
}

.button-register {
    background: url('/static/images/home-btn-2.png') no-repeat;
    background-size: contain;
    left: 520px;
}

.button-login {
    background: url('/static/images/home-btn-2.png') no-repeat;
    background-size: contain;
    left: 245px;
    top: 80px;
}

.button:hover {
    opacity: 0.7;
}

.layui-layout-custom {
    width: 1080px;
    box-shadow: 0 0 10px 2px rgba(255, 255, 255, 0.5);
    box-sizing: border-box;
    margin: 0 auto;
    background: rgba(106, 171, 231, 0.5);
    border-radius: 15px;
}

.spacer {
    height: 1px;
}

.fieldset-custom {
    border-radius: 10px;
    width: 95%;
    margin: 50px auto;
    box-shadow: 0 4px 8px rgba(130, 236, 213, 0.5);
    background-color: rgba(255, 255, 255, 0.2);
}

.legend-custom {
    border-radius: 10px;
    color: #ffffff;
    text-shadow: 1px 1px 2px #54acd4;
    font-weight: bold;
    font-size: 24px;
}

.layui-field-box-custom {
    display: flex;
    flex-wrap: wrap;
}

.button-custom {
    width: 30%;
    height: 80px;
    font-size: 40px;
    font-weight: bold;
    background-color: #5abbd3;
    margin: 1.66%;
    margin-left: 10px;
}

.footer-spacer {
    height: 20px;
}

.fixed-login {
    position: fixed;
    left: 10%;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    /* display: none; */
    cursor: move;
}

.login-icon {
    position: fixed;
    left: 10%;
    top: 50%;
    transform: translateY(-50%);
    width: 130px;
    height: 130px;
    background-color: #1944d1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity 0.3s;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
}

.login-icon:hover {
    opacity: 0.7;
}

.login-icon a {
    font-weight: bold;
    color: white;
    font-size: 20px;
    text-shadow: 1px 1px 2px rgb(25, 195, 218), -1px -1px 2px rgb(25, 195, 218), 1px -1px 2px rgb(25, 195, 218), -1px 1px 2px rgb(25, 195, 218);
}

.close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #333;
    width: 20px;
    height: 20px;
}

.player-status {
    padding: 20px;
    background-color: #f5f5f5;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.player-details {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 10px;
}

.player-column {
    flex: 1;
    padding: 0 10px;
}

.player-details p {
    margin: 5px 0;
    font-size: 16px;
    color: #333;
}

.logout-button {
    text-align: center;
    margin-top: 20px;
}

.logout-button button {
    background-color: #d9534f;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.logout-button button:hover {
    background-color: #c9302c;
}

.layui-col-space10 .repair-card {
    background-color: #f9f9f9;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);

    width: 25%;
    /* 固定宽度 */
    height: 200px;
    /* 固定高度 */
    margin-left: 40px;
    /* 添加左外边距 */
    margin-top: 20px
}



.repair-card .layui-btn {
    display: block;
    margin-left: 15px;
    width: 80%;
    margin-top: 40px;
}

/* 自定义警告样式 */
.warning {
    color: #FF5722;
    font-size: 12px;
    line-height: 1.5;
    margin-top: 5px;
    text-align: justify;
}