.popUp {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(27, 27, 27, 0.7);
    z-index: 1005;
    display: none;
}
.popUp .popUpBox {
    background: #1A1A1A;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    width: calc(100% - 32px);
    padding: 24px 24px 32px;
    box-sizing: border-box;
    position: fixed;
    left: 16px;
    top: calc(50% - 240px);
}
.popUp .popUpBox content{
    margin-bottom: 30px;
    display: block;
    text-align: center;
}
.popUp .popUpBox content h1{
margin-bottom: 20px;}
.popUp .popUpBox content h2{
    margin-bottom: 22px;
    font-size: 22px;
}
.popUp .popUpBox content p{
    font-size: 15px;
}
.popUp .popUpBox content p > strong{
    color: #ff6b00;
}
.popUp .popUpBox content .socialIcon{
text-align: center;
margin-top: 16px;
}
.popUp .popUpBox content .socialIcon a{
    display: inline-block;
    vertical-align: top;
    margin: 0 15px;
}
.popUp .popUpBox content .socialIcon a img{
    width: 52px;
    display: block;
    margin-bottom: 8px;
}
.popUp .popUpBox content .alignLeft{
    text-align: left;
}

.popUp .popUpBox content .countDown{
    margin-top: 20px;
}

.popUp .popUpBox content .countDown .counting{
    color: #999;
}

.popUp .popUpBox content .countDown .counting a{
    color: #ff6b00;
}
/* 步驟 */
.popUp .popUpBox content .stepBox{
    display: flex;
    padding: 0 12px;
    margin-top: 32px;
    -webkit-align-items: flex-start;
            align-items: flex-start;
        -webkit-justify-content: center;
                justify-content: center;
}
.popUp .popUpBox content .stepBox .line{
    width: 40px;
    height: 1px;
    background-color: #FFF;
    margin-top: 30px;
}
.popUp .popUpBox content .step{
    font-size: 14px;
}
.popUp .popUpBox content .step *{
    font-size: inherit;
}
.popUp .popUpBox content .step .imgWrap{
    width: 60px;
    height: 60px;
    margin: 0 auto 8px;
}
/* 步驟 end*/
.popUp .popUpBox .btnBox{
    text-align: center;
}
.popUp .popUpBox .btn{
    margin-bottom: 8px;
}
.popUp .popUpBox .btn, .btnPupUpOpen{
	cursor: pointer;
}
.popUp.static {
    position: static;
    width: auto;
    height: auto;
    background-color: transparent;
    display: block;
}
.popUp.static .popUpBox {
    box-shadow: none;
    position: static;
    margin: 70px auto;
}
.popUp .popUpBox content .inputBox input{
    background: #3F3F3F;
    border: 1px solid #4A4A4A;
    box-sizing: border-box;
    border-radius: 25px;
    height: 36px;
    line-height: 36px;
    padding: 0 16px;
    color: #FFF;
    width: 100%;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}
.popUp .popUpBox content .inputBox input:focus{
    outline-style: none;
    border: solid 1px #5a5a5a;
}

.popUp .popUpBox content .inputBox input.error{
    border: 1px solid #B72020;
}

.popUp .popUpBox content .inputBox .inputError{
    margin-top: 4px;
}
.popUp .popUpBox content .inputBox .inputErrorIcon{
    width: 16px;
    height: 16px;
    display: inline-block;
    margin-right: 8px;
    position: relative;
    top: 2px;
    margin-left: 16px;
}

@media screen and (min-width: 768px) {
    .popUp .popUpBox {
        width: 614px;
        left: calc(50% - 307px);
        padding: 52px 92px;
    }

    .popUp .popUpBox content .socialIcon{
        margin-top: 32px;
    }
    .popUp .popUpBox content .socialIcon a img{
        width: 60px;
        display: block;
    }
    .popUp .popUpBox content .inputBlock h4 {
        padding: 0 16px;
    }
    .popUp .popUpBox content .step{
        font-size: 15px;
    }
}
@media screen and (min-width: 1024px) {
	.popUp .popUpBox {
        width: 760px;
        left: calc(50% - 380px);
        padding: 56px 130px;
    }
    .popUp .popUpBox content{
        margin-bottom: 46px;
    }
    .popUp .popUpBox content .inputBox input{
        height: 45px;
        line-height: 45px;
        padding: 0 24px;
        color: #FFF;
        width: 100%;
    }
    .popUp .popUpBox content .inputBlock h4 {
        padding: 0 24px;
    }    
    .popUp .popUpBox content h2{
        margin-bottom: 20px;
        font-size: 34px;
    }    
    .popUp .popUpBox content p{
        font-size: 18px;
        line-height: 1.4;
    }    

}

@media screen and (min-width: 1440px) {

}