* {
    margin: 0;
    padding: 0;
}

#loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1000;
    opacity: 0;
    display: none;
    background-color: rgba(255, 255, 255, 0.5);
}

#loading img {
    width: 10%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1001;
}

#dialog {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 2000;
    opacity: 0;
    display: none;
    /*background-color: rgba(255, 255, 255, 0.5);*/
    justify-content: center;
    align-items: flex-start;
}

#dialog-tooltip{
    margin-top: 30vh;
    min-width: 200px;
    max-width: 80vw;
    border-radius: 10px;
    background-color: #000000;
    text-align: center;
    line-height: 20px;
    color: #ffffff;
    padding: 10px 10px;
    box-sizing: border-box;
}

#success {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1002;
    background-color: #F0F3F8;
    /*display: flex;*/
    align-items: center;
    justify-content: center;
    opacity: 0;
    display: none;
}

#success img {
    width: 240px;
}

body {
    margin: 0;
    position: relative;
    min-height: 100vh;
    overflow: scroll;
    background: linear-gradient(230deg, #d7e0f2 0%, #f1f3fd 100%) #F0F3F8 no-repeat;
    background-size: 100% 330px;
}

.container {
    display: flex;
    flex-direction: column;
}

.container-title {
    margin-top: 35px;
    line-height: 23px;
    color: #000000;
    font-weight: 600;
    font-size: 18px;
    align-self: center;
}

.container-card {
    margin-top: 65px;
    width: calc(100% - 70px);
    background: #3B83FF;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    padding: 25px 22px;
    box-sizing: border-box;
    min-height: 105px;
    justify-content: space-between;
    align-self: center;
}

.container-info-bg {
    position: absolute;
    width: 100%;
    left: 0;
    top: 196px;
    height: 460px;
    background-color: #FFFFFF;
    border-radius: 10px;
    z-index: -1;
}

.container-card-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 20px;
}

.container-card-item-title {
    font-size: 14px;
    color: #FFFFFF;
}

.container-card-item-value {
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
}

.container-info {
    margin-top: 20px;
    height: 55px;
    display: flex;
    align-items: center;
    padding: 0 25px;
    box-sizing: border-box;
}

.container-info-label {
    font-weight: 500;
    font-size: 14px;
    color: #000000;
    width: 90px;
}

.container-info-input-container {
    position: relative;
    height: 55px;
    flex: 1;
}

.container-info-input-container select {
    width: 100%;
    height: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    box-sizing: border-box;
}

.container-info-input-container input {
    width: 100%;
    height: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    box-sizing: border-box;
}

.container-info-input-container input::placeholder {
    color: #999999;
    font-size: 14px;
}

.container-file-label {
    margin: 20px 0 20px 35px;
    font-size: 14px;
    color: #000000;
    font-weight: 500;
}

.container-file {
    margin: 0 10px 10px 30px;
    width: 74px;
    height: 74px;
    border-radius: 10px;
    border: 1px solid #E0E0E0;
    background: url("../img/upload.webp") no-repeat center center;
    background-size: 16px 16px;

    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.container-file img {
    max-width: 100%;
    max-height: 100%;
    background-color: #ffffff;
    display: none; /* 隐藏图片，直到加载后显示 */
}

.file-upload-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.container-upload {
    margin-top: 5px;
    color: #999999;
    font-size: 12px;
    margin-left: 30px;
    width: 74px;
    text-align: center;
}

.container-confirm {
    margin: 60px 0 0 20px;
    width: calc(100% - 40px);
    height: 56px;
    background: #204D9B;
    border-radius: 28px;
    text-align: center;
    line-height: 56px;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 600;
}

.container-bottom {
    flex-shrink: 0;
    height: 20px;
}
