* {
    margin: 0;
    padding: 0;
    list-style: none;
    font-family: 'Noto Sans TC', sans-serif;
}

html {
    background-color: #F2F6F9;
    font-size: 62.5%;
    letter-spacing: 2px;
}

h3 {
    color: #3E3A39;
    font-size: 5em;
    text-align: center;
    line-height: 55px;
    font-weight: 700;
    margin: 0 0 15px;
}

h4 {
    font-size: 3.2em;
    color: #0070C0;
}

h5 {
    color: #0070C0;
    font-size: 3em;
    text-align: center;
}

p {
    color: #3E3A39;
    font-size: 1.8em;
    font-weight: 500;
    line-height: 25px;
}

span {
    color: #7F8080;
    font-size: 1.5em;
}

img {
    vertical-align: middle;
}

a {
    color: #4686f7;
    text-decoration: none;
}

.item1 .title,.send .title {
    margin-bottom: 10px;
}

.item1 .title img,.send .title img {
    width: 67px;
    margin: 0 0px 20px 0;
}

.item1,
.item1 .title,.send .title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.item1 .title h3::after,.send .title h3::after {
    content: '';
    max-width: 150px;
    height: 5px;
    display: block;
    background-color: #3E3A39;
    margin: 20px auto 0;
}

.item1 h3 img {
    padding: 0 10px 20px 0;
}

.wrap {
    width: 100%;
    margin: auto;
    height: auto;
    overflow: hidden;
}

.table {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 30px 0;
    text-align: left;
}

.table thead,
.thead {
    background-color: #0070C0;
}

th,
td {
    border: 1px solid #7F8080;
    padding: 0 10px;
}

.table th,
.thead {
    font-size: 2.2em;
    font-weight: 500;
    color: #fff;
    padding: 15px 10px;
}

.table td {
    font-size: 1.8em;
    font-weight: 500;
}

@media screen and (max-width:650px) {
    .item1 .title img,.send .title img {
        width: 12%;
        margin: 0px;
    }
    .item1 .title h3::after,.send .title h3::after {
        max-width: 86px;
        height: 4px;
        margin: 10px auto 0;
    }
}

@media screen and (max-width:450px) {
    h3 {
        font-size: 3.5em;
        line-height: 40px;
        margin: 0;
    }

    h4 {
        font-size: 2.2em;
    }

    .item1 .title h3::after {
        max-width: 100px;
    }

    h5 {
        font-size: 3em;
    }

    p {
        font-size: 1.5em;
        line-height: 21px;
    }

    span {
        font-size: 1em;
    }

    th,
    td {
        padding: 5px;
    }

    .table th {
        font-size: 1.5em;
    }

    .table td {
        font-size: 1.3em;
        line-height: 16px;
        letter-spacing: 0.5px;
    }
}

/* header */
.header {
    width: 100%;
    margin: auto;
    position: fixed;
    transition: background-color 0.3s ease;
    background-color: transparent;
    z-index: 500;
}

.header.scrolled {
    background-color: rgba(241, 245, 249, 0.9);
}

.header .item {
    max-width: 1200px;
    margin: auto;
}

.header .item img {
    width: 188px;
    margin: 25px 0 25px 4px;
}

@media screen and (max-width:450px) {
    .header .item img {
        width: 165px;
    }
}

/* kv */
.kv {
    background: url(../img/kv-bg.png) #def8ff no-repeat bottom center;
    width: 100%;
    height: 650px;
    position: relative;
    overflow: hidden;
}

.kv > div{
    position: absolute;
}

.kv .people{
    background: url(../img/kv-people.png) no-repeat center center;
    background-size: contain;
    width: 217px;
    height: 152px;
    top: 393px;
    left: calc(50% - 758px);
}

.kv .car1{
    background: url(../img/kv-car1.png) no-repeat center center;
    background-size: contain;
    width: 258px;
    height: 110px;
    top: 474px;
    left: calc(50% - 1037px);
    animation: rightIn 1.5s forwards;
}
.kv .car2{
    background: url(../img/kv-car2.png) no-repeat center center;
    background-size: contain;
    width: 259px;
    height: 129px;
    top: 457px;
    left: calc(50% + 505px);
    animation: rightIn 2s forwards;
}
.kv .car3{
    background: url(../img/kv-car3.png) no-repeat center center;
    background-size: contain;
    width: 258px;
    height: 110px;
    top: 510px;
    left: calc(50% + 887px);
    animation: rightIn 1s forwards;
}
.kv .plane{
    background: url(../img/kv-plane.png) no-repeat center center;
    background-size: contain;
    width: 183px;
    height: 34px;
    top: 116px;
    left: calc(50% + 634px);
    animation: fly 12s infinite;
}
@-moz-keyframes fly {
    0% {
        margin: 0;
    }

    20% {
        margin: -10px 0 0 10px;
    }
    40% {
        margin: 10px 0 0 -10px;
    }

    70% {
        margin: -10px 0 0 10px;
    }

    90% {
        margin: 10px 0 0 -10px;
    }

    100% {
        margin: 0;
    }
}
@-webkit-keyframes fly {
    0% {
        margin: 0;
    }

    20% {
        margin: -10px 0 0 10px;
    }
    40% {
        margin: 10px 0 0 -10px;
    }

    70% {
        margin: -10px 0 0 10px;
    }

    90% {
        margin: 10px 0 0 -10px;
    }

    100% {
        margin: 0;
    }
}
@keyframes fly {
    0% {
        margin: 0;
    }

    20% {
        margin: -10px 0 0 10px;
    }
    40% {
        margin: 10px 0 0 -10px;
    }

    70% {
        margin: -10px 0 0 10px;
    }

    90% {
        margin: 10px 0 0 -10px;
    }

    100% {
        margin: 0;
    }
}
@-moz-keyframes rightIn {
    from {
        transform: translate3d(100%, 0, 0);
    }

    to {
        transform: none;
    }
}
@-webkit-keyframes rightIn {
    from {
        transform: translate3d(100%, 0, 0);
    }

    to {
        transform: none;
    }
}
@keyframes rightIn {
    from {
        transform: translate3d(100%, 0, 0);
    }

    to {
        transform: none;
    }
}

.kv .cont{
    display: flex;
    justify-content: center;
    width: 100%;
    top: 111px;
    padding-left: 22px;
}

/* part1 */
.kv .part1{
    padding-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.kv .kv_effect{
    position: absolute;
    width: 100%;
}
.kv .kv_effect .effect1{
    background: url(../img/kv-effect-1.svg) no-repeat center center;
    background-size: contain;
    width: 21px;
    height: 24px;
    position: absolute;
    top: 15px;
    left: calc(50% - 180px);
    filter: drop-shadow(0px 3px 9px #8fd4f7);
    animation: star 1.2s infinite;
}
.kv .kv_effect .effect2{
    background: url(../img/kv-effect-2.svg) no-repeat center center;
    background-size: contain;
    width: 100%;
    max-width: 151px;
    height: 141px;
    position: absolute;
    left: 1%;
    filter: drop-shadow(0px 3px 13px #b9e9fc);
}
@-moz-keyframes star {
    0% {
        opacity: 1;
    }

    40% {
        opacity: 0.2;
        transform: scale(0.8);
    }

    70% {
        opacity: 0.8;
    }


    100% {
        opacity: 1;
    }
}
@-webkit-keyframes star {
    0% {
        opacity: 1;
    }

    40% {
        opacity: 0.2;
        transform: scale(0.8);
    }

    70% {
        opacity: 0.8;
    }


    100% {
        opacity: 1;
    }
}
@keyframes star {
    0% {
        opacity: 1;
    }

    40% {
        opacity: 0.2;
        transform: scale(0.8);
    }

    70% {
        opacity: 0.8;
    }


    100% {
        opacity: 1;
    }
}
.kv .fade{
    position: absolute;
    width: 100%;
    height: 100%;
}

.kv .fade .kv_t1_effect{
    background: url(../img/kv-effect-1.svg) no-repeat center center;
    background-size: contain;
    width: 15px;
    height: 17px;
    position: absolute;
    top: 118px;
    left: calc(50% + 138px);
    animation: star 1.5s infinite;
}
.kv .kv_t1{
    background: url(../img/kv-t1.png) no-repeat center center;
    background-size: contain;
    width: 330px;
    height: 259px;
    margin: 45px 0 0 20px;
}

/* part2 */
.kv .part2{
    margin: 40px 0 0 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.part2_box{
    display: flex;
}

.kv .kv_t10{
    background: url(../img/kv-t10.png) no-repeat center center;
    background-size: contain;
    width: 475px;
    height: 29px;
    margin: 20px 0 10px;
}

@media screen and (max-width:1440px) {
    .kv .cont{
        padding-left: 0px;
    }
    .kv .car1{
        left: calc(50% - 907px);
    }
}
@media screen and (max-width:1024px) {
    .kv .cont{
        padding-left: 0px;
    }
    .kv .car2{
        left: calc(50% + 430px);
    }
    .kv .car3{
        display: none;
    }
}
@media screen and (max-width:820px) {
    .header .item img{
        margin: 25px 0 25px 20px;
    }
    .kv {
        background: url(../img/kv-bg-m.png) #def8ff no-repeat bottom center;
        background-size: cover;
        width: 100%;
        height: 800px;
    }
    .kv .kv_t1{
        background: url(../img/kv-t1-m.png) no-repeat center center;
        background-size: contain;
        width: 498px;
        height: 184px;
    }
    .kv .fade .kv_t1_effect{
        top: 70px;
        left: calc(50% + 225px);
    }
    .kv .kv_effect{
        top: 28px;
    }
    .kv .kv_effect .effect2{
        width: 88px;
        height: 83px;
        left: calc(50% - 250px);
    }
    .kv .kv_effect .effect1{
        width: 16px;
        top: 12px;
        left: calc(50% - 260px);
    }
    .kv .people{
        top: 814px;
        left: calc(50% - 504px);
    }
    .kv .car1{
        top: 650px;
        left: calc(50% - 307px);
    }
    .kv .car2{
        top: 630px;
        left: calc(50% + 238px);
    }
    .kv .cont{
        flex-direction: column;
        align-items: center;
        top: 70px;
    }
    .kv .kv_t10{
        margin: 10px 0 14px;
    }
    .kv .part1{
        padding-top: 0;
    }
    .kv .part2{
        margin: 0;
    }
}
@media screen and (max-width:600px) {
    h3{
        font-size: 3.2rem;
    }
    .kv{
        height: 713px;
    }
    .kv .people{
        display: none;
    }
    .kv .car1{
        width: 141px;
        height: 60px;
        top: 620px;
        left: calc(50% - 137px);
    }
    .kv .car2{
        width: 135px;
        height: 67px;
        top: 590px;
        left: calc(50% + 147px);
    }
    
}

/* content */
.content {
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
}

.content2 {
    width: 100%;
    background: url(../img/p2-bg.png)no-repeat bottom center, rgba(255, 255, 255, 1);
}

.content3 {
    width: 100%;
    height: auto;
    background: url(../img/p3-bg.png)no-repeat top center;
}

.content4 {
    width: 100%;
    background-color: #0091BC;
}


/* p2 */
.p2 {
    width: 100%;
    padding: 40px 0;
}

.p2 span {
    font-size: 1.7rem;
    margin-top: 10px;
}
.p2 .detail span {
    color: #fff200;
    font-size: 3rem;
    font-weight: 700;
    margin-top: 0px;
}
.p2 .detail .bigY {
    font-size: 4rem;
}
.p2 .detail .bigY2 {
    font-size: 3.4rem;
}

.p2 .cont {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: column;
}

.p2 .part1 {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
}

.p2 .item2{
    margin-top: 40px;
}

.p2 .item2 .p2_t {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 441px;
    margin: auto;
    padding: 10px 7px;
    background-color: #0070C0;
    border-radius: 99px;
    margin-bottom: -25px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.p2 .item2 .p2_t img {
    width: 46px;
    height: 46px;
    margin-right: 4px;
    filter: drop-shadow(0px 3px 3px rgba(75, 75, 75, 0.76));
}
.p2 .item2 h4 {
    text-align: center;
    font-size: 2.8em;
    font-weight: 500;
    line-height: 1.3;
    color: #fff;
}

.p2 .item2 p {
    letter-spacing: 0;
}

.p2 .item2 .text {
    position: relative;
    z-index: 1;
    border: 2px solid #0070C0;
    background-color: #fff;
    box-shadow: 0px 4px #DAF2FE;
    border-radius: 20px;
    padding: 35px 30px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.p2 .part1 .item2 {
    width: 49%;
    text-align: justify;
}

.p2 .part1 .item2:nth-child(2) .p2_t,.p2 .part1 .item2:nth-child(3) .p2_t {
    margin-bottom: -45px;
}

.p2 .part1 .item2 .text {
    min-height: 150px;
}

@media screen and (max-width:950px) {
    .p2 .cont {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        flex-wrap: wrap;
    }
    .p2 .part1 .item2 .text {
        min-height: 170px;
    }
    .p2 .part1 {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .p2 .part1 .item2 {
        width: 85%;
    }
    .p2 .part1 .item2 .text {
        min-height: 150px;
    }
}

@media screen and (max-width:650px) {
    .content2 {
        width: 100%;
        background: url(../img/p2-bg.svg)no-repeat bottom center, rgba(255, 255, 255, 1);
    }
    .p2 .cont {
        justify-content: center;
        align-items: center;
        margin: 0 auto;
        width: 92%;
    }
    .p2 .part1 .item2 {
        width: 100%;
    }
    .p2 .item2{
        margin-top: 30px;
    }
    .p2 .item2:nth-child(1) {
        margin-top: 8px;
    }
    .p2 .item2:nth-child(1) .p2_t{
        padding: 0px 7px 10px;
    }
    .p2 .item2 .text{
        padding: 40px 30px 15px;
    }
}


/* p3 */
.p3 {
    width: 100%;
    padding: 40px 0;
}

.p3 h4 {
    color: #3E3A39;
    font-size: 2.9em;
    letter-spacing: 0.5px;
    text-align: center;
    margin-top: 40px;
}


@media screen and (max-width:950px) {
    .p3 .item3 .table table {
        width: 100%;
        height: auto;
    }

    .p3 .item3 .table img {
        width: 60%;
        margin: 20px 0;
    }
}

@media screen and (max-width:550px) {
    .p2,.p3 {
        padding: 30px 0 50px;
    }
}

/* send表單 */
.send .item2 {
    width: 100%;
    background-color: #fff;
    border-radius: 0 40px 0 40px;
    box-shadow: 1px 2px 15px 4px rgba(27, 177, 201, 0.2);
    padding: 60px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.send .detail {
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.send .detail .enter form {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.send input::placeholder {
    color: #DCDDDD;
}

.send .detail .enter .name {
    width: 100%;
    display: block;
}

.send .detail .enter .text {
    width: 45%;
    display: inline;
}
.send .detail .enter .text.verifi {
    width: 100%;
    display: inline;
}

.send .detail .enter input {
    border: 1px solid #0070C0;
    padding: 20px 8px;
    margin: 8px 0;
}

.send .name input,
.send .text input,
.send .verification input {
    font-size: 1.7em;
}

.send .detail #Name,
.send .detail .name {
    width: 100%;
}

.send .detail #Telm,
.send .detail .text,
.send .detail .verification {
    width: 100%;
}

.verifi_box{
    width: 70%;
    display: inline-block;
}
#verification {
    margin: 8px 0 0 6px;
    display: inline-block;
    width: 20%;
}
#verifiText {
    margin: 8px 0 0 6px;
    width: 20%;
    text-align: center;
}

/* 訊息設定 */
#message {
  white-space: normal;
  /* 允許換行 */
  color: red;
  margin-top: 8px;
  margin-left: 0;
  /* 緊貼左邊 */
}

#login {
    clear: both;
}

.send .detail .bt1 {
    border: 4px solid #ffab15;
    background-color: #fff;
    border-radius: 50px;
    padding: 20px 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    opacity: 1;
    cursor: pointer;
    margin-bottom: 15px;
}

.send .detail .bt1:hover {
    opacity: 0.8;
}

.send .detail .bt1 p {
    color: #ffab15;
    font-weight: 700;
}

.send .detail .bt1 img {
    width: 31px;
}

.send .detail .bt2 {
    border: none;
    background-color: #ffab15;
    border-radius: 5px;
    padding: 20px 30px;
    opacity: 1;
    cursor: pointer;
    color: #fff;
    letter-spacing: 1.5px;
    font-size: 1.8rem;
}

.send .detail .bt2:hover {
    opacity: 0.8;
}

.send .detail .bt3 {
    border: none;
    background-color: #ffab15;
    border-radius: 50px;
    padding: 18px 60px;
    opacity: 1;
    cursor: pointer;
}

.send .detail .bt3:hover {
    opacity: 0.8;
}

.send .detail .bt3 p {
    color: #fff;
    letter-spacing: 1.5px;
}

.send .detail .hook {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 25px 0 20px;
}

.send .detail .hook form {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.send .detail .hook #male {
    width: 15px;
}

.send .detail .hook input {
    appearance: none;
}

.send .detail .hook input[type="checkbox"] {
    appearance: none;
    width: 15px;
    height: 15px;
    border: 1px solid #3E3A39;
    background-color: #fff;
    color: #fff;
}

.send .detail .hook input[type="checkbox"]:checked {
    background-color: #0070C0;
    color: #fff;
}

.send .detail .hook input[type="checkbox"]:checked::before {
    content: "✓";
    display: block;
    color: #fff;
    text-align: center;
    font-weight: 900;
    line-height: 1;
}

#checkbox1,
#checkbox2 {
    color: #fff;
}

.send .detail .hook label {
    width: 100%;
    margin: -6px 5px 12px 3px;
    letter-spacing: .5px;
}

.send .detail .hook label p {
    font-size: 1.6em;
}

.send .detail .text .bday {
    width: 100%;
    display: flex;
}

.send .detail .text select {
    width: 100%;
    border: 1px solid #0070C0;
    padding: 20px 8px;
    margin: 8px 10px 8px 0;
    font-size: 1.7em;
}

@media screen and (max-width:640px) {
    .p3 p{
        font-size: 2.2rem;
    }
    .send .detail{
        width: 85%;
    }
    .send .detail .hook label p{
        font-size: 1.8em;
    }

    .send .detail .enter form {
        flex-direction: column;
    }

    .send .detail #Name,
    .send .detail .name,
    .send .detail #Telm,
    .send .detail .text,
    .send .detail .verification {
        width: 96%;
    }
    .send .detail .enter .text,
    .verifi_box {
        width: 100%;
    }
    #verifiText {
    width: 30%;
    }
    #verification {
        width: 58%;
    }
    #verifiText{
        margin: 8px 0 0 0;
    }
    .send .detail .bt2{
        width: 100%;
        margin-top: 8px;
        padding: 15px 30px;
        font-size: 2.2rem;
    }

    .send .detail .enter input{
        margin: 8px 0 18px;
    }
    .send .detail .text select {
        margin: 8px 10px 18px 0;
        font-size: 2.2em;
    }

    .send .detail .text select,.send .detail .enter input {
        padding: 14px 8px;
    }
    .send .name input,
    .send .text input,
    .send .verification input {
        font-size: 2.2em;
    }
    .send .detail .bt1 p,
    .send .detail .bt3 p  {
        font-size: 2.2rem;
    }

    .send .detail .bt1 img {
        width: 25px;
    }

    .send .detail .hook input[type="checkbox"] {
        width: 18px;
        height: 18px;
    }
    .send .detail .hook form:nth-child(2){
        margin-top: 10px;
    }
    
}

/* footer */
.footer {
    padding: 30px 0;
}

.footer p {
    font-size: 1.5em;
    font-weight: 400;
    text-align: center;
    color: #fff;
}


/*Start CommonPopup */
.temporary {
    display: none;
    width: 100vw;
    height: 100vh;
    background: rgba(52,73,94,0.7);
    position: fixed;
    top: 0;
    left: 0;
    overflow: scroll;
    z-index: 2000;
}
    /*alert*/
    .temporary div {
        /*        width: 80vw;
        margin: 3.3333vw;*/
        width: 60vw;
        margin: 15.3333vw;
        padding: 6.6666vw 6.6666vw 6vw;
        position: relative;
        background: #fff;
    }

        .temporary div.btns {
            margin: 4vw 0vw 0vw 0vw;
        }

    .temporary a.btn_close {
        display: block;
        width: 8vw;
        height: 8vw;
        position: absolute;
        background: #008fc7 url('../images/delete_w.webp') no-repeat center;
        background-size: 4vw;
        top: 0;
        right: 0;
    }

    .temporary iframe {
        width: 3.3333vw;
        height: 2.6666vw;
        margin-right: 2.1333vw;
    }

    .temporary span.title {
        display: block;
        width: 80vw;
        color: #6a7884;
        font-size: 1.2rem; /*line-height: 4.2666vw;*/
    }

    .temporary strong {
        display: block;
        padding: 6.6666vw 0;
        font-size: 1.2rem;
        color: #34495e;
    }

    .temporary p {
        color: #6a7884;
        font-size: 1.2rem;
        line-height: 1.2rem;
        margin: 0;
    }

        .temporary p.remind {
            color: #6a7884;
            font-size: 1.2rem;
            line-height: 1.2rem;
        }

        .temporary p span {
            line-height: 6vw;
            display: initial;
            font-size: 1.2rem;
            font-weight: 400;
        }

            .temporary p span.red {
                color: #ff5c5c;
                font-weight: 700;
            }

            .temporary p span.blue {
                display: block;
                color: #6a7884;
                width: 65vw;
                white-space: pre-wrap;
                word-break: break-all;
            }

    .temporary input {
        width: 80vw;
    }

    .temporary a.btn_check {
        display: block;
        width: 80vw;
        font-size: 1.2rem;
        line-height: 6vw;
        text-align: center;
        font-weight: 700;
        color: #fff;
        background: #008fc7;
    }

    .temporary a.pre_calc_btn_check {
        display: block;
        width: 80vw;
        font-size: 1.2rem;
        line-height: 6vw;
        text-align: center;
        font-weight: 700;
        color: #fff;
        background: #008fc7;
    }

/* step1 popup 文字樣式　by Ivan */
.popupHeader {
    position: relative;
    left: 50px;
}

@media screen and (min-width: 1024px) {
    .collapse_btn {
        color: #fff;
        padding: 0 0;
        width: 190px;
        border-radius: 30px;
        margin: 0 20% 25px;
        font-size: 18px;
        line-height: 20px;
        background: hotpink;
        float: right;
        text-align: center;
    }

    .temporary {
        display: none;
        width: 100vw;
        height: 100vh;
    }

        .temporary div {
            width: 600px;
            margin: 100px auto 0;
            padding: 50px;
        }

            .temporary div.btns {
                margin: 0;
            }

        .temporary a.btn_close {
            width: 30px;
            height: 30px;
            background-size: 15px;
        }

        .temporary iframe {
            width: 12.5px;
            height: 10px;
            margin-right: 8px;
        }

        .temporary span.title {
            width: 100%;
            font-size: 16px;
            line-height: 16px;
            padding-bottom: 25px;
            border-bottom: solid 1px #e7eaf0;
        }

        .temporary strong {
            padding: 0 0 25px;
            font-size: 16px;
        }

        .temporary p {
            font-size: 16px;
            line-height: 27px;
            margin-bottom: 25px;
        }

            .temporary p.remind {
                font-size: 14px;
                line-height: 24px;
            }

            .temporary p span {
                line-height: 27px;
                font-size: 16px;
            }

                .temporary p span.blue {
                    width: 95%;
                }

        .temporary input {
            width: 380px;
            margin-right: 25px;
            display: inline-block;
        }

        .temporary a.btn_check {
            width: 180px;
            font-size: 16px;
            line-height: 28px;
            display: inline-block;
        }

        .temporary a.pre_calc_btn_check {
            width: 180px;
            font-size: 16px;
            line-height: 45px;
            display: inline-block;
        }
    /* step1 popup 文字樣式　by Ivan */
    .popupHeader {
        position: relative;
        left: 150px;
    }
}
/*End CommonPopup */
