* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.page {
    width: 100vw;
    min-height: 100vh;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    width: 576px;
    min-height: 100vh;
    background: #fff;
}

header{
    width: 576px;
    height: 80px;
    background: #333333;
    display: flex;
    align-items: center;
    justify-content: center;
}

header img{
    width: 50px;
    height: 50px;
    margin-right: 20px;
}

header p {
    font-size: 20px;
    color: #fff;
    font-weight: 300;
}

.main {
    width: 100%;
    min-height: calc(100vh - 80px);
    padding: 30px;
    box-sizing: border-box;
}

.title {
    font-size: 21px;
    font-weight: 600;
    line-height: 1.8;
    color: #333333;
    margin-bottom: 10px;
}

.order {
    margin-bottom: 30px;
}

.order .detail {
    font-size: 14px;
    line-height: 1.8;
    color: #333;
    display: flex;
}

.order .detail .detail-title {
    font-weight: 600;
    width: 90px;
}

.order .detail .detail-content {
    font-weight: normal;
    width: calc(100% - 90px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.order .detail .order-list {
    font-weight: normal;
    width: calc(100% - 90px);
}

.order .detail .order-list p {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.upload {
    display: none;
}

.upload .tip{
    text-align: center;
    font-size: 14px;
    font-weight: 600;
}

.upload .box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0 20px;
}

.upload .box .file {
    position: relative;
    width: calc(50% - 8px);
    overflow: hidden;
}

.upload .box .file input {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    z-index: 10;
}

.upload .box .file .camera {
    position: absolute;
    width: 33%;
    top: 42%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.upload .box .file p {
    font-size: 12px;
    color: #333;
    text-align: center;
}

.upload .box .file img {
    width: 100%;
}

.upload .box .file .id-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 20px);
    display: flex;
}

.upload .box .file .id-card img{
    width: auto;
    height: 100%;
    margin: auto;
}

.upload .intro {
    font-size: 12px;
    color: #aaa;
    line-height: 1.8;
}

.upload .btn {
    display: flex;
    margin-top: 40px;
}

.upload .btn button {
    border: none;
    background: #333;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    width: 190px;
    height: 40px;
    border-radius: 20px;
    margin: auto;
}

.result {
    display: none;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-top: 50px;
}

input:hover ,button:hover, input:active, button:active{
    outline: none;
    border: none;
}

@media screen and (max-width: 576px) {
    .container, header {
        width: 100vw;
    }
}