apple-pay-button {
    --apple-pay-button-width: 150px;
    --apple-pay-button-height: 30px;
    --apple-pay-button-border-radius: 3px;
    --apple-pay-button-padding: 0px 0px;
    --apple-pay-button-box-sizing: border-box;
}
.apple-pay-button {
    display: inline-block;
    -webkit-appearance: -apple-pay-button;
    -apple-pay-button-type: buy; /* Use any supported button type. */
}
.apple-pay-button-black {
    -apple-pay-button-style: black;
}
.apple-pay-button-white {
    -apple-pay-button-style: white;
}
.apple-pay-button-white-with-line {
    -apple-pay-button-style: white-outline;
}
.apple-pay-set-up-button {
    display: inline-block;
    -webkit-appearance: -apple-pay-button;
    -apple-pay-button-type: set-up;
}
.apple-pay-set-up-button-black {
    -apple-pay-button-style: black;
}
.apple-pay-set-up-button-white {
    -apple-pay-button-style: white;
}
.apple-pay-setup-button-white-with-line {
    -apple-pay-button-style: white-outline;
}
.oc-pay-alert{
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid;
    border-radius: 4px;
    display: none;
}
.oc-pay-alert-danger{
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1;
}
.oc-pay-alert-warning{
    color: #8a6d3e;
    background-color: #fcf8e3;
    border-color: #faebcc;
}
.oc-pay-alert-info{
    color: #31708f;
    background-color: #d9edf7;
    border-color: #bce8f1;
}
.oc-pay-bg-masking{
    display:none;
    position:fixed;
    width:100%;
    height:100%;
    background:#0006;
    z-index:9999;
    top:0;
    left:0;
    opacity:0.7;

    /*display: flex;*/
    /*实现垂直居中*/
    align-items: center;
    /*实现水平居中*/
    justify-content: center;
    text-align: justify;
    margin:0 auto;
}