*:facus {
	outline: none;
}

body {
    background: #e5e5e5;
}

.ctx {
    padding: 15px 0 !important;
}

.ctx.formCtx {
    width: 100% !important;
    padding: 60px 0 !important;
    background: #fff;
}

.cont {
    width: 1200px;
    margin: auto;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.cont .left {
    flex: 0 0 47%;
}

.cont .left .icon {
    width: 60px;
    margin: 20px 0 0;
}

.cont .left .txt1 {
    margin: 30px 0;
    font-size: 52px;
}

.cont .left .txt2 {
    margin: 0;
    letter-spacing: 2px;
    font-weight: bold;
    font-size: 24px;
}

.cont .left hr {
    width: 100px;
    margin: 30px 0;
}

.cont .right {
    flex: 0 0 47%;
}

.cont .right .brief {
    line-height: 1.6em;
    letter-spacing: 1px;
    font-weight: bold;
    font-size: 18px;
}

.cont .right .form {
    margin: auto;
}

.cont .right .form .item {
    margin: 35px auto;
    position: relative;
    /* background: #ccc; */
}

.cont .right .form .item .tit {
    font-weight: bold;
}

.cont .right .form .item input[type="text"] {
    width: 100%;
    margin: 5px 0 0;
    padding: 10px;
    box-sizing: border-box;
    border: solid 1px #b0b0b0;
    font-family: Microsoft JhengHei, Arial;
    font-size: 16px;
    color: #808080;
    outline: none;
}


.cont .right .form .item select {
    margin: 5px 0;
    padding: 5px 10px;
    box-sizing: border-box;
    font-family: Microsoft JhengHei, Arial;
    font-size: 16px;
}

.cont .right .form .item .listType {
    width: 100%;
    margin: 5px 0;
    border-collapse: collapse;
}

.cont .right .form .item .listType tr th {
    padding: 10px 0;
    border-bottom: solid 2px #fff;
    text-align: center;
    background: #f0f0f0;
}

.cont .right .form .item .listType tr td {
    padding: 10px;
    box-sizing: border-box;
    border-bottom: solid 2px #fff;
    text-align: center;
    background: #e0e0e0;
}

.cont .right .form .item .listType tr td:nth-child(1) {
    text-align: left;
}

.cont .right .form .item .listType tr td input[type="checkbox"] {
    accent-color: #0080f0;
}


.cont .right .form .item .captcha {
    width: 150px;
    height: 35px;
    position: absolute;
    right: 30px;
    bottom: 4px;
    background: #ccc;
}

.cont .right .form .item .reload {
    position: absolute;
    right: 3px;
    bottom: 8px;
    font-size: 24px;
    cursor: pointer;
}

.cont .right .form .submit {
    width: 150px;
    margin: 30px 0 30px auto;
    padding: 10px 20px;
    box-sizing: border-box;
    border-radius: 2px;
    letter-spacing: 2px;
    text-align: center;
    font-weight: bold;
    font-size: 20px;
    background: #e5e5e5;
    cursor: pointer;
}

.cont .right .form .submit:hover {
    /* text-shadow: 0 0 5px rgba(0, 0, 0, 0.25); */
    color: #c00;
}

.loadingContainer {
    width: 100%;
    height: 100%;
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 99;
    background: rgba(0, 0, 0, 0.85);
}

.loadingContainer .loading {
    width: 60px;
    height: 60px;
    margin: auto;
    display: inline-block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    font-size: 60px;
}

.msgContainer {
    width: 100%;
    height: 100%;
    /* display: flex; */
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0px;
    left: 0;
    z-index: 100;
    background: rgba(0, 0, 0, 0.85);
}

.msgContainer .msgBoard {
    margin: auto;
    padding: 40px 0 0;
    box-sizing: border-box;
    position: relative;
    /* border-bottom: solid 10px #b4d200; */
    border-bottom: solid 10px #e5e5e5;
    letter-spacing: 2px;
    font-weight: bold;
    font-size: 20px;
    text-align: center;
    background: #e5e5e5;
}

.msgContainer .msgBoard .closeBtn {
    position: absolute;
    right: -35px;
    top: -35px;
    font-size: 36px;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
}

.msgContainer .msgBoard .icon {
    width: 100px;
}

.msgContainer .msgBoard .title {
    margin: 10px 0;
    font-size: 36px;
    text-shadow: 0 0 1px rgba(0, 0, 0, 0.3);
}

.msgContainer .msgBoard .slogan {
    width: 500px;
    margin: 40px 0 0;
    vertical-align: bottom;
}

.msgContainer .msgBoard .info {
    margin: 10px 0 0;
    padding: 10px 0 0;
    border-top: dotted 2px #c0c0c0;
    /* text-align: left; */
    color: #808080;
}

.msgContainer .msgBoard .infoTit {
    text-align: center;
}

.msgContainer .msgBoard .item {
    margin: 20px 0 0;
}

.msgContainer .msgBoard .itemTit {
    font-size: 20px;
    color: #800;
    text-shadow: 0 0 1px rgba(0, 0, 0, 0.1), 0 0 1px rgba(0, 0, 0, 0.1), 0 0 1px rgba(0, 0, 0, 0.1);
}

@media screen and (min-width: 1201px) and (max-width: 1366px) {
}

@media screen and (min-width: 768px) and (max-width: 1200px) {
    .cont {
        width: 100%;
        padding: 0 40px;
    }

    .cont .left {
        flex: 0 0 100%;
    }

    .cont .right {
        flex: 0 0 100%;
    }
}

@media screen and (min-width: 1px) and (max-width: 767px) {
    .ctx.formCtx {
        padding: 20px 0 !important;
    }

    .cont {
        width: 100%;
        padding: 20px 15px;
    }

    .cont .left {
        flex: 0 0 100%;
    }

    .cont .right {
        flex: 0 0 100%;
    }

    .cont .left .icon {
        transform: translateY(-5px);
    }

    .cont .left .txt1 {
        margin: 10px 0 0 15px;
        display: inline-block;
        font-size: 28px;
    }

    .cont .left .txt2 {
        letter-spacing: 1px;
        font-size: 20px;
    }

    .cont .left hr {
        margin: 20px 0;
        display: block;
    }

    .cont .right .brief {
        margin: 40px 0 0;
    }

    .cont .right .form .submit {
        width: 120px;
        font-size: 16px;
    }

    .msgContainer .msgBoard {
        width: 90%;
        margin: 0 5%;
    }

    .msgContainer .msgBoard .closeBtn {
        right: -10px;
        top: -40px;
    }

    .msgContainer .msgBoard .title {
        font-size: 28px;
    }

    .msgContainer .msgBoard .slogan {
        width: 100%;
    }
}

@media screen and (max-width: 320px) {
}