*:facus {
	outline: none;
}

.form {
    width: 400px;
    margin: auto;
}

.form .item {
    margin: 40px auto;
    /*background: #ccc;*/
}

.form .item .tit {
    font-weight: bold;
    font-size: 20px;
}

.form .item input[type="text"] {
    width: 100%;
    margin: 5px 0;
    padding: 5px 10px;
    box-sizing: border-box;
    border: none;
    border-bottom: dotted 1px #303030;    
    font-family: Microsoft JhengHei, Arial;
    font-size: 16px;
    color: #808080;
    outline: none;
}

.form .item input[type="checkbox"] {
    transform: scale(1.2);
}

.form .item select {
    margin: 5px 0;
    padding: 5px 10px;
    box-sizing: border-box;
    font-family: Microsoft JhengHei, Arial;
    font-size: 16px;
}

.form .item .listType {
    width: 100%;
    margin: 5px 0;
    border-collapse: collapse;
}

.form .item .listType tr th {
    padding: 10px 0;
    border-bottom: solid 2px #fff;
    text-align: center;
    background: #f0f0f0;
}

.form .item .listType tr td {
    padding: 10px;
    box-sizing: border-box;
    border-bottom: solid 2px #fff;
    text-align: center;
    background: #e0e0e0;
}

.form .item .listType tr td {
    text-align: left;
}

.form .submit {
    margin: 0 0 30px 50%;
    padding: 5px 25px;
    display: inline-block;
    border-radius: 2px;
    font-size: 20px;
    color: #fff;
    background: #b00000;
    cursor: pointer;
    transform: translateX(-50%);
}

.form .submit:hover {
    text-shadow: 0 0 5px #fff;
}

.successMsg {
    height: 50px;
    margin: auto;
    padding: 0 20px;
    box-sizing: border-box;
    display: none;
    position: absolute;
    top: 200px;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 28px;
}

.successMsg .highlight {
    font-weight: bold;
    color: #c00;
}

@media screen and (min-width: 1201px) and (max-width: 1366px) {
}

@media screen and (min-width: 768px) and (max-width: 1200px) {
}

@media screen and (min-width: 1px) and (max-width: 767px) {
    .form {
        width: 100%;
    }
}

@media screen and (max-width: 320px) {
}