/*---------- Form (start) ----------*/
input[type="text"] {
    width: 20%;
    margin: 5px 40%;
    padding: 10px 15px;
    box-sizing: border-box;
    display: inline-block;
    position:relative;
    z-index: 1;
    /*border: none;*/
    font-family: Microsoft JhengHei, Arial;
    font-weight: bold;
    font-size: 18px;
}

.submitBtn {
    width: 20%;
    margin: 10px 40%;
    padding: 10px 15px;
    box-sizing: border-box;
    border: none;
    position: relative;
    z-index: 1;
    letter-spacing: 2px;
    font-family: Microsoft JhengHei, Arial;
    font-weight: bold;
    font-size: 20px;
    color: #d9e021;
    background: #4f9472;
    cursor: pointer;
}

.submitBtn:hover {
    text-shadow: 0 0 3px #fff, 0 0 20px #fff;
}
/*---------- Form (end) ----------*/

/*---------- Activity Info (start) ----------*/
.resultTitle {
    margin: 60px 0 10px;
    text-align: center;
    font-weight: bold;
    font-size: 32px;
    color: #808080;
}

.activityInfo {
    width: 1000px;
    margin: 0 auto 30px;
    padding: 40px 50px;
    box-sizing: border-box;
    border: solid 1px #e0e0e0;
    background: #f8f8f8;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.activityInfo .checkActivity {
    width: 65%;
    padding: 0 40px 0 0;
    box-sizing: border-box;
    float: left;
}

.activityInfo .checkActivityWidth100 {
    width: 100%;
    padding: 0;
}

.activityInfo .checkActivity .info {
    border-collapse: collapse;
}

.activityInfo .checkActivity .info tr td {
    padding: 12px 0;
    font-size: 18px;    
}

.activityInfo .checkActivity .info tr td:nth-child(1) {
    width: 50px;
}

.activityInfo .checkActivity .info tr td:nth-child(2) {
    width: 95px;
}

.activityInfo .checkActivity .info tr td .icon {
    width: 30px;
    margin: 0 5px -3px 0;
    font-size: 28px;
    color: #808080;
}

.activityInfo .checkActivity .statusItem {
    text-align: center;
    font-size: 20px;
}

.activityInfo .checkActivity .statusItem .status {    
    width: 120px;
    margin: 10px 0 0;
    padding: 10px;
    display: inline-block;
    font-weight: bold;
    font-size: 24px;
    color: #23ac39;
    background: #e8e8e8;
}

.activityInfo .delActivity {
    width: 35%;
    margin: 50px 0 0;
    padding: 0 0 50px 40px;
    box-sizing: border-box;
    float: left;
    border-left: dashed 1px #e0e0e0;
}

.activityInfo .delActivity .delBtn {
    width: 200px;
    height: 200px;
    margin: 50px auto 20px;
    box-sizing: border-box;;
    border: solid 1px rgba(255, 0, 0, 0);
    border-radius: 100%;
    text-align: center;
    color: rgba(255, 0, 0, 0.5);
    background: #fff;
    cursor: pointer;
}

.activityInfo .delActivity .delBtn:hover {
    border: dashed 1px rgba(255, 0, 0, 0.2);
}

.activityInfo .delActivity .delBtn .icon {
    margin: 60px 0 10px;
    font-size: 48px;
    color: rgba(255, 0, 0, 0.35);
}

@media screen and (min-width: 1px) and (max-width: 1200px) {
    input[type="text"] {
        width: 80%;
        margin: 5px 10%;
        padding: 10px 15px;
        font-size: 18px;
    }
    
    .submitBtn {
        width: 80%;
        margin: 5px 10%;
    }

    .activityInfo {
        width: 100%;
        padding: 20px;
    }
    
    .activityInfo .checkActivity {
        width: 100%;
        padding: 0;
    }

    .activityInfo .checkActivity .info tr td {
        font-size: 16px;
    }
    
    .activityInfo .checkActivity .info tr td:nth-child(1) {
        width: 35px;
    }
    
    .activityInfo .checkActivity .info tr td:nth-child(2) {
        width: 85px;
    }
    
    .activityInfo .checkActivity .info tr td .icon {
        width: 20px;
        margin: 0 5px -3px 0;
        font-size: 32px;
        color: #808080;
    }

    .activityInfo .delActivity {
        width: 100%;
        margin: 30px 0 0;
        padding: 30px 0 0;
        border-left: none;
        border-top: dashed 1px #e0e0e0;
    }

    .activityInfo .delActivity .delBtn {
        width: 150px;
        height: 150px;
        margin: 20px auto;
    }

    .activityInfo .delActivity .delBtn .icon {
        margin: 35px 0 10px;
        /* font-size: 56px; */
    }
}
/*---------- Activity Info (end) ----------*/


/*---------- KV (start) ----------*/
.kv {
    height: 50%;
    position: fixed;
    right: 200px;
    bottom: 101px;
}

@media screen and (min-width: 1367px) and (max-width: 1600px) {
    .kv {
        right: 100px;
    }
}

@media screen and (min-width: 1201px) and (max-width: 1366px) {
    .kv {
        right: 50px;
    }
}

@media screen and (min-width: 1px) and (max-width: 1200px) {
    .kv {
        display: none;
    }
}
/*---------- KV (end) ----------*/