@import "../../common/css/common.css";

select {
    /*将默认的select选择框样式清除*/
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    outline: none;
}

/*清除ie的默认选择框样式清除，隐藏下拉箭头*/
select::-ms-expand {
    display: none;
}

.main {
    max-width: 1200px;
    margin: 0 auto;
}

.container {
    position: fixed;
    background: url(../images/bg.jpg)no-repeat center center;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    background-size: 100% 100%;
    overflow-y: scroll;
    padding-bottom: 40px;
}

.header {
    padding: 18px 0;
}
.header_logo{
    margin-left: 30px;
}

.header a:last-of-type {
    width: 162px;
    height: 45px;
    line-height: 45px;
    background-color: #ffffff;
    border-radius: 24px;
    font-size: 24px;
    color: #2481f6;
    text-align: center;
    margin-right: 30px;
}

.main_title {
    text-align: center;
    margin: 23px 0;
}

.main_title img:last-child {
    margin-top: 15px;
}

.search_con {
    width: 900px;
    /* height: 450px; */
    background-color: #ffffff;
    box-shadow: 0px 6px 16px 1px rgba(18, 15, 143, 0.35);
    border-radius: 30px;
    margin: 0 auto;
    padding-bottom: 14px;
}

.sea_tit {
    width: 100%;
    height: 78px;
    line-height: 78px;
    background-color: #fc8901;
    box-shadow: 0px 6px 16px 1px rgba(18, 15, 143, 0.35);
    border-radius: 30px 30px 0px 0px;
    opacity: 0.87;
    font-size: 30px;
    letter-spacing: 3px;
    color: #b10000;
    text-align: center;
}

.sea_tit>span {
    color: #ffffff;
}

.exam_wrap {
    margin: 30px 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.exam_wrap li {
    /* width: 474px; */
    line-height: 51px;
    margin-top: 1px;
    background: url("../images/arrow.png") no-repeat 95% center;
    background-size: 16px 16px;
}

.exam_wrap li:first-child {
    margin-bottom: 20px;
    /* margin-right: 25px; */
    /* margin: 0 9px 0 20px; */
}

.exam_wrap select {
    width: 360px;
    height: 54px;
    font-size: 22px;
    border: solid 1px #bfbfbf;
    border-radius: 6px;
}

#province {
    background: url(../images/province.png) no-repeat 18px center;
    padding-left: 70px;
    background-size: 20px 27px;
}

#place {
    background: url(../images/place.png) no-repeat 18px center;
    padding-left: 70px;
    background-size: 21px 25px;
}

#sea_btn {
    display: block;
    width: 360px;
    height: 55px;
    line-height: 55px;
    background-image: linear-gradient(90deg,
            #fe9d5d 0%,
            #fc7e2a 100%);
    border-radius: 10px;
    font-size: 28px;
    color: #fff;
    margin: 0 auto;
}

.tip {
    width: 823px;
    font-size: 17px;
    line-height: 26px;
    color: #999999;
    margin: 15px auto 0;
    position: relative;
}

.line {
    width: 68px;
    height: 8px;
    background-color: #ffff00;
    opacity: 0.35;
    position: absolute;
    top: 11px;
}

.look {
    display: inline-block;
    font-size: 19px;
    color: red;
    line-height: 25px;
    margin-left: 40px;
    text-decoration: underline;
    margin-top: 10px;
}

/* 表格 */
.sea_tb {
    width: 900px;
    margin: 20px auto 0;
    background: #fff;
    border-radius: 30px;
    text-align: center;
    display: none;
}

.sea_tb a{
    text-decoration: underline;
}
.sea_tb a:hover{
    color: #fc8901;
}

.sea_tb tr:first-child {
    height: 50px;
    background-color: #fc8901;
    color: #fff;
    font-size: 17px;
}

.detail a {
    display: block;
    width: 109px;
    height: 38px;
    line-height: 38px;
    background-color: #4575fd;
    border-radius: 19px;
    text-align: center;
    font-size: 17px;
    color: #fff;
    margin: 0 auto;
}

.sea_tb td {
    padding: 10px 8px;
    line-height: 25px;
    border-right: solid 2px #bfbfbf;
    border-bottom: solid 2px #bfbfbf;
}

.sea_tb tr td:last-child {
    border-right: 0;
}

.sea_tb tr:last-child td {
    border-bottom: none;
}

table tr:first-child th:first-child {
    border-top-left-radius: 30px;
}

table tr:first-child th:last-child {
    border-top-right-radius: 30px;
}

table tr:last-child td:first-child {
    border-bottom-left-radius: 30px;
}

table tr:last-child td:last-child {
    border-bottom-right-radius: 30px;
}

.post {
    display: block;
    text-align: center;
}

.code_wrap {
    width: 900px;
    display: flex;
    justify-content: space-around;
    margin: 38px auto 28px;
    padding: 20px 0;
    background: rgba(255,255,255,0.8);
    border-radius: 30px;
}

.code_wrap p {
    width: 200px;
    font-size: 25px;
    line-height: 36px;
    margin-top: 30px;
}

.code_wrap .code_red {
    color: #900202;
}

/* 遮罩 */
.zg_cover {
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 100;
}

/* 登录注册开始 */
.login_wrap {
    width: 439px;
    position: fixed;
    left: 50%;
    top: 50%;
    margin-left: -243px;
    margin-top: -150px;
    z-index: 9999;
    border-radius: 10px;
    background: #f3f5f7;
    z-index: 100000;
    display: none;
}

.bd_close {
    width: 30px;
    height: 30px;
    background: url(./../images/close.png) no-repeat center center;
    cursor: pointer;
    position: absolute;
    right: -35px;
    top: -35px;
}

.bd_nav {
    width: 100%;
    height: 60px;
    text-align: center;
    background: #fff;
    border-radius: 10px 10px 0 0;
}

.bd_nav span {
    display: inline-block;
    width: 106px;
    height: 58px;
    font-size: 22px;
    line-height: 58px;
    color: #d5d5d5;
    cursor: pointer;
    text-align: center;
    margin: 0 20px;
    border-bottom: 2px solid transparent;
}

.bd_nav span.active {
    color: #d36461;
    border-bottom: 2px solid #d36461;
    font-weight: bold;
}

.bd_nav span {
    display: inline-block;
    width: 106px;
    height: 58px;
    font-size: 22px;
    line-height: 58px;
    color: #d5d5d5;
    cursor: pointer;
    text-align: center;
    margin: 0 20px;
    border-bottom: 2px solid transparent;
}

.login_wrap .agileits {
    width: 394px;
    margin: 0 auto;
    padding: 30px 0px 20px;
    display: none;
    border-radius: 5px;
}

.login_wrap .agileits .bd_line_wrap {
    width: 394px;
    height: 49px;
    background: #fff;
    border-radius: 5px;
    margin-bottom: 15px;
}

.login_wrap .agileits .bd_line_wrap label {
    width: 60px;
    height: 49px;
    line-height: 49px;
    text-align: center;
    color: #999999;
    font-size: 18px;
    float: left;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login_wrap .agileits .bd_line_wrap label img {
    width: 18px;
}

.login_wrap .agileits .bd_line_wrap input {
    display: block;
    float: left;
    width: 242px;
    line-height: 49px;
    font-size: 20px;
    color: #999999;
    height: 49px;
    border: none;
    background: none;
    outline: none;
}

.login_wrap .agileits .bd_line_wrap.send_button {
    background: none;
    height: 54px;
    border: none;
    margin-top: 20px;
}

.login_wrap .agileits .bd_line_wrap {
    width: 394px;
    height: 49px;
    background: #fff;
    border-radius: 5px;
    margin-bottom: 15px;
}

.login_wrap .agileits .bd_line_wrap.send_button input.submintBtn {
    width: 180px;
    height: 50px;
    padding-left: 0;
    cursor: pointer;
    float: none;
    background: #d36461;
    line-height: 50px;
    font-size: 20px;
    color: #fff;
    border-radius: 50px;
    transition: all 1s;
    margin: 0 auto;
}

.yzm_wrap {
    position: relative;
}

.yzm_wrap .yzm_btn,
#daojishi {
    width: 120px;
    height: 49px;
    color: #d36461;
    position: absolute;
    right: 0px;
    top: 0px;
    text-align: center;
    line-height: 49px;
    font-size: 16px;
    transition: all 1s;
}

/* 按钮 */
.login_wrap .agileits .bd_line_wrap.send_button {
    background: none;
    height: 54px;
    border: none;
    margin-top: 20px;
}

.login_wrap .agileits .bd_line_wrap {
    width: 394px;
    height: 49px;
    background: #fff;
    border-radius: 5px;
    margin-bottom: 15px;
}

.login_wrap .agileits .bd_line_wrap.send_button input.submintBtn {
    width: 180px;
    height: 50px;
    padding-left: 0;
    cursor: pointer;
    float: none;
    background: #d36461;
    line-height: 50px;
    font-size: 20px;
    color: #fff;
    border-radius: 50px;
    transition: all 1s;
    margin: 0 auto;
}

/* 已登录注册 */
.btn_wrap {
    width: 417px;
    text-align: right;
    height: 42px;
    float: right;
    display: none;
    margin-right: 30px;
}

.btn_wrap a.info_btn {
    display: inline-block;
    color: #333;
    font-size: 24px;
}

.btn_wrap a.quit_btn {
    display: inline-block;
    width: 134px;
    font-size: 16px;
    height: 40px;
    line-height: 40px;
    color: #ffffff;
    font-size: 20px;
    margin: 0 10px;
    text-align: center;
    border-radius: 50px;
    background: #fe9d5d;
}

/* 登录注册结束 */

/* 使用说明 */
.instruct {
    width: 776px;
    background: #fff;
    position: fixed;
    left: 50%;
    top: 50%;
    margin-left: -388px;
    margin-top: -200px;
    padding: 0px 0px 23px;
    border-radius: 5px;
    z-index: 999999;
    border-radius: 10px;
}

.ins_close {
    width: 30px;
    height: 30px;
    background: url(../images/close.png) no-repeat center center;
    cursor: pointer;
    position: absolute;
    right: 5px;
    top: -45px;
}

.instruct h3 {
    font-size: 26px;
    height: 65px;
    line-height: 65px;
    color: #fff;
    background: #d36461;
    text-align: center;
    border-radius: 10px 10px 0 0;
}

.ins_list {
    padding-top: 20px;
    width: 720px;
    margin: 0 auto;
}

.ins_list li {
    line-height: 30px;
    font-size: 18px;
    padding-left: 16px;
    color: #333333;
    margin-bottom: 5px;
}

.ins_list li::before {
    content: '';
    display: inline-block;
    width: 15px;
    height: 15px;
    background-color: #d36461;
    margin-right: 10px;
    border-radius: 50%;
    vertical-align: middle;
}

.ins_list span {
    color: #2603fd;
}

.know_ins {
    width: 164px;
    height: 45px;
    line-height: 45px;
    background: #d36461;
    cursor: pointer;
    margin: 18px auto 0;
    font-size: 22px;
    color: #fff;
    border-radius: 26px;
    text-align: center;
}