body {
    padding-top: 48px;
}

input[readonly] {
    background-color: #F2F3F5;
}

.myInputClass {
    max-width: 100%;
    width: 100%;
    border-radius: 4px;
    padding: 12px;
    border: 1px solid #8e9299;
}

.myDivClass {
    margin: 0 0 20px;
}

.centerClass {
    padding: 32px 17px;
    border-radius: 8px;
    box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.10);
}

.redClass {
    color: #c90401;
}

.myButton {
    background-color: black;
    color: white;
    border-block-color: white;
    width: 150px;
}

#myForm {
    width: 100%;
}

footer {
    text-align: center;
}

.myDivCenter {
    margin-left: auto;
    margin-right: auto;
}

.myDisplaynone {
    display: none;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* 半透明黑色 */
    z-index: 9999; /* 确保遮罩覆盖其他元素 */
}

.passcheck {
    display: none;
}

.navbar .container {
    padding: 0;
}

#myForm .myInputClass {
    width: 100%;
    height: 40px;
    border: 1px solid #8e9299;
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
    color: #2b2b2b;
    border-radius: 4px;
    outline: none;
}

#myForm .myButton {
    margin-top: 16px;
    max-width: 320px;
    width: 100%;
    min-width: 150px;
    background-color: #2b2b2b;
    border: 0;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    height: 40px;
    line-height: 40px;
    letter-spacing: .0075em;
    color: #fff;
    position: relative;
    padding: 0 40px;
    outline: none;
}

.body-content {
    padding: 0 0 48px;
}

footer {
    color: hsla(0,0%,100%,.75);
    background-color: #2b2b2b;
    padding: 35px 0;
    margin: 0 auto;
}

html, body {
    height: 100%;
    padding-bottom: 0;
}

select .opt {
    background-color: #fff;
    color: #2b2b2b;
}

.body-content {
    min-height: calc(100% - 130px);
}

.sel-pos {
    position: relative;
}

.con-select {
    height: 40px;
    border: 1px solid #8e9299;
    border-radius: 4px;
}

    .con-select.cur {
        border-bottom-color: #2b2b2b;
    }

    .con-select::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 2;
    }

    .con-select::after {
        content: '';
        position: absolute;
        top: 14px;
        right: 13px;
        width: 8px;
        height: 8px;
        border: 2px solid #2b2b2b;
        border-left: none;
        border-top: none;
        rotate: 45deg;
    }

    .con-select.open::after {
        top: 18px;
        rotate: -135deg;
    }

.privato-con {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    line-height: 55px;
    font-size: 18px;
}

.select-ul {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    background-color: #FFF;
    box-shadow: 0 12px 20px hsla(0,0%,60%,.25);
    list-style: none;
    z-index: 2;
    padding: 10px 5px;
    border-radius: 0 0 5px 5px;
}

.select-li {
    width: 100%;
    cursor: pointer;
    line-height: normal;
    padding: 8px 10px;
    list-style: none;
    font-size: 16px;
    color: #2b2b2b;
}

    .select-li:hover {
        background-color: hsla(0,0%,96.1%,.6);
        color: #dc2f2f;
    }

.row label {
    color: #2b2b2b;
    font-size: 16px;
    font-weight: 400;
}

.modal-content {
    border-radius: 4px;
}

.close {
    color: #2b2b2b;
    opacity: 1;
}

.modal-body {
    font-size: 14px;
    color: #8E9299;
}

.modal-footer {
    border-top: 0 none;
}

.btn-secondary, .btn-secondary:hover {
    background-color: #2b2b2b;
    border-color: #2b2b2b;
}

.myDivCenter {
    padding: 32px 0;
}
/* Responsive styles for small screens */
@media only screen and (max-width: 767px) {
    body {
        padding-top: 32px;
    }
    .navbar .container {
        padding: 0 12px;
    }
    .body-content {
        padding: 0 12px 32px;
    }
    .myDivCenter {
        padding: 16px 0;
    }
    .centerClass {
        padding: 16px 0;
    }
} 