
.alert {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.alert-content {
    background-color: white;
    padding: 30px ;
    border-radius: 4px;
    box-shadow: 0px 2px 4px 2px rgba(189,189,189,0.40); 
    width: 486px;
    position: relative;
}

.alert-close {
    position: absolute;
    width: 20px;
    height: 20px;
    right: 20px;
    top: 20px;
    border-radius: 50%;
    cursor: pointer;
}

.alert-content-title {
    font-size: 20px;
    font-family: PingFangSC, PingFangSC-Medium;
    font-weight: 500;
    text-align: center;
    color: #333333;
    line-height: 20px;
}

.alert-content-desc {
    margin: 20px 0;
    font-size: 16px;
    font-family: PingFangSC, PingFangSC-Regular;
    font-weight: 400;
    text-align: justify;
    color: #333333;
    line-height: 28px;
    letter-spacing: 0px;
    white-space: pre-wrap;
}

.alert-operation {
    display: flex;
    justify-content: center;
    align-items: center;
}
.alert-operation > .order-cancel {
    width: 130px;
    opacity: 1;
    border: 1px solid #ffac00;
    border-radius: 5px;
    font-size: 16px;
    font-family: PingFangSC, PingFangSC-Medium;
    font-weight: 500;
    text-align: center;
    color: #ffac00;
    line-height: 16px;
    cursor: pointer;
    padding: 10px 0;
    margin-right: 10px;
}

.alert-operation > .order-close {
    width: 130px;
    cursor: pointer;
    opacity: 1;
    background: #ffac00;
    border-radius: 5px;
    font-size: 16px;
    font-family: PingFangSC, PingFangSC-Medium;
    font-weight: 500;
    text-align: center;
    color: #ffffff;
    line-height: 16px;
    padding: 10px 0;
}

.cancel-reason-content {
    background-color: white;
    padding: 25px 40px 30px 40px;
    border-radius: 4px;
    box-shadow: 0px 2px 4px 2px rgba(189,189,189,0.40); 
    width: 538px;
    position: relative;
}

.cancel-reason-content-title {
    font-size: 20px;
    font-family: PingFangSC, PingFangSC-Medium;
    font-weight: 500;
    text-align: left;
    color: #333333;
    line-height: 20px;
}

.cancel-reason-option {
    margin-top: 20px;
    margin-bottom: 20px;
}

.cancel-reason-option-title {
    font-size: 16px;
    font-family: PingFangSC, PingFangSC-Regular;
    font-weight: 400;
    text-align: left;
    color: #030303;
    line-height: 22px;
    letter-spacing: 0px;
}

.cancel-reason-option-box {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
}

.cancel-reason-option-items {
    width: 50%;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.cancel-reason-option-items > img {
    width: 18px;
    height: 18px;
}

.cancel-reason-option-items > span {
    margin-left: 10px;
    font-size: 16px;
    font-family: PingFangSC, PingFangSC-Regular;
    font-weight: 400;
    text-align: center;
    color: #030303;
    line-height: 22px;
    letter-spacing: 0px;
}

.cancel-reason-textarea {
    margin-bottom: 40px;
}

.cancel-reason-textarea textarea {
    width: 100%;
    background: #fafafa;
    border: 1px solid #d8d8d8;
    border-radius: 2px;
    padding: 10px;
    box-sizing: border-box;
    font-size: 14px;
}


.cancel-reason-textarea textarea::placeholder {
    font-size: 14px;
    font-family: PingFangSC, PingFangSC-Regular;
    font-weight: 400;
    color: #999999;
    line-height: 20px;
    letter-spacing: 0px;
}

.cancel-reason-textarea div {
    width: 100%;
    text-align: right;
    font-size: 10px;
    font-family: PingFangSC, PingFangSC-Regular;
    font-weight: 400;
    color: #999999;
    line-height: 14px;
    letter-spacing: 0px;
}