* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100%;
    font-family: Arial, "Microsoft YaHei", sans-serif;
    color: #333;
    overflow-x: hidden;
}

body {
    background: #f5f1d8;
}

a {
    text-decoration: none;
    outline: 0;
}

img {
    border: 0;
    vertical-align: middle;
}

/* =========================
   首页 PC 顶部
========================= */
.header_pc {
    width: 100%;
    height: 88px;
    background-image: url("/assets/images/top_bg_pc.png");
    background-repeat: repeat-x;
    background-position: center top;
    background-size: auto 88px;
}

.header_pc .con {
    width: 980px;
    max-width: calc(100% - 20px);
    height: 88px;
    margin: 0 auto;
    position: relative;
}

.header_pc .logo {
    position: absolute;
    left: 0;
    top: 25px;
    width: 180px;
    height: 55px;
}

.header_pc .logo img {
    max-width: 180px;
    max-height: 55px;
    display: block;
}

.header_pc .cen {
    position: absolute;
    left: 220px;
    top: 34px;
    height: 30px;
    line-height: 30px;
    color: #b48618;
    white-space: nowrap;
}

.header_pc .cen a {
    color: #c70000;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    padding: 0 13px;
}

.header_pc .cen a:hover {
    color: #ff0000;
}

/* =========================
   首页 H5 顶部
========================= */
.header_h5 {
    display: none;
}

/* =========================
   首页主体
========================= */
.main_con {
    width: 100%;
    height: calc(100vh - 88px);
    min-height: 0;
    position: relative;
    overflow: hidden;
    background-color: #f5f1d8;
    background-image: url("/assets/images/btm_bg.jpg");
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 100% auto;
}

/* =========================
   首页搜索区域
========================= */
.sea_box {
    width: 620px;
    max-width: calc(100% - 30px);
    margin: 0 auto;
    padding-top: 240px;
}

.input_box {
    width: 620px;
    max-width: 100%;
    height: 70px;
    border: 1px solid #b7aa79;
    border-radius: 36px;
    background: #f5f1d8;
    overflow: hidden;
    position: relative;
}

.input_box::before {
    content: "";
    position: absolute;
    left: 22px;
    top: 22px;
    width: 28px;
    height: 28px;
    background: url("/assets/images/ico_search.png") no-repeat center center;
    background-size: 28px 28px;
    z-index: 2;
}

.search_txt {
    position: absolute;
    left: 62px;
    top: 0;
    width: 390px;
    height: 68px;
    line-height: 68px;
    border: 0;
    outline: none;
    background: transparent;
    font-size: 16px;
    color: #777;
    padding: 0 10px;
}

.search_txt::placeholder {
    color: #999;
}

.search_btn {
    position: absolute;
    right: 16px;
    top: 10px;
    width: 140px;
    height: 50px;
    line-height: 50px;
    border-radius: 28px;
    background: #c91c1c;
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-size: 18px;
}

.search_btn:hover {
    background: #b80000;
}

/* =========================
   验证码
========================= */
.input_vcode {
    margin-top: 14px;
    text-align: center;
}

.input_vcode .search_txt {
    position: static;
    width: 180px;
    height: 42px;
    line-height: 42px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 3px;
}

.vcode_btn {
    height: 42px;
    vertical-align: middle;
    margin-left: 8px;
}

/* =========================
   底部
========================= */
.footer {
    display: none;
}

/* =========================
   旧线路页面兼容
========================= */
.line_wrap {
    max-width: 1000px;
    margin: 70px auto;
    background: #fff;
    padding: 35px;
    border-radius: 6px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .08);
}

.line_wrap h2 {
    font-size: 24px;
    font-weight: 400;
}

.line_wrap h2 span {
    color: #1687d9;
}

.line_table {
    width: 100%;
    border-collapse: collapse;
}

.line_table th,
.line_table td {
    border-bottom: 1px solid #eee;
    padding: 15px 12px;
    text-align: left;
}

.line_table th {
    background: #fafafa;
}

.line_table a {
    color: #1677d2;
    text-decoration: none;
}

.latency {
    color: #19a15f;
}

/* =========================
   首页手机端
========================= */
@media (max-width: 768px) {
    .header_pc {
        display: none;
    }

    .header_h5 {
        display: block;
        width: 100%;
        height: 58px;
        background-image: url("/assets/images/top_bg_h5.png");
        background-repeat: repeat-x;
        background-position: center top;
        background-size: auto 58px;
    }

    .header_h5 .con {
        height: 58px;
        position: relative;
    }

    .header_h5 .btn_l {
        position: absolute;
        left: 12px;
        top: 0;
        height: 58px;
        line-height: 58px;
    }

    .header_h5 .btn_l a {
        text-decoration: none;
        color: #333;
        font-size: 14px;
    }

    .header_h5 .btn_l img {
        width: 20px;
        height: 20px;
        vertical-align: middle;
        margin-right: 4px;
    }

    .header_h5 .logo {
        width: 150px;
        height: 58px;
        margin: 0 auto;
        text-align: center;
        padding-top: 10px;
    }

    .header_h5 .logo img {
        max-height: 38px;
        max-width: 150px;
    }

    .main_con {
        height: calc(100vh - 58px);
        min-height: 620px;
        background-color: #f5f1d8;
        background-image: url("/assets/images/btm_bg.jpg");
        background-repeat: no-repeat;
        background-position: center bottom;
        background-size: 100% auto;
    }

    .sea_box {
        width: 92%;
        max-width: 92%;
        padding-top: 160px;
    }

    .input_box {
        width: 100%;
        height: 54px;
        border-radius: 28px;
    }

    .input_box::before {
        left: 16px;
        top: 16px;
        width: 22px;
        height: 22px;
        background-size: 22px 22px;
    }

    .search_txt {
        left: 48px;
        width: calc(100% - 160px);
        height: 52px;
        line-height: 52px;
        font-size: 15px;
    }

    .search_btn {
        right: 8px;
        top: 7px;
        width: 100px;
        height: 40px;
        line-height: 40px;
        font-size: 15px;
        border-radius: 22px;
    }

    .line_wrap {
        margin: 25px 12px;
        padding: 15px;
        overflow-x: auto;
    }

    .line_table {
        min-width: 680px;
    }
}

/* =========================
   安全码后线路页
========================= */
.show_page {
    background-color: #f5f3dc;
    background-image: url("/assets/images/btm_bg.jpg");
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 100% auto;
    background-attachment: fixed;
    min-height: 100vh;
    overflow-x: hidden;
}

/* 线路页 PC 顶部 */
.show_page .header_pc {
    width: 100%;
    height: 89px;
    padding: 20px 0;
    position: relative;
    background: #927539 url("/assets/images/top_bg_pc.png") no-repeat center;
    background-size: cover;
}

.show_page .header_pc .con {
    width: 1000px;
    max-width: calc(100% - 24px);
    height: 49px;
    margin: 0 auto;
}

.show_page .header_pc .con .name {
    float: left;
    margin-top: 0;
    font-size: 20px;
    line-height: 49px;
    height: 49px;
    color: #fff;
}

.show_page .header_pc .con .name span {
    color: #FFE685;
    font-size: 28px;
    margin-right: 4px;
}

.show_page .header_pc .con .btn {
    float: right;
    margin-top: 7px;
}

.show_page .header_pc .con .btn a {
    border: 1px solid #ff717c;
    border-radius: 5px;
    background: #bb1c06;
    color: #fff;
    margin: 0 5px;
    height: 34px;
    width: 85px;
    text-align: center;
    float: left;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
}

.show_page .header_pc .con .btn a:hover {
    background: #d21313;
}

.show_page .header_pc .con .btn a img {
    margin-right: 5px;
}

/* 线路页主体 */
.show_page .main_con {
    width: 100%;
    min-width: 0;
    height: auto;
    min-height: calc(100vh - 89px);
    background: transparent !important;
    overflow: visible;
    padding-bottom: 0 !important;
}

/* 线路列表 */
.show_page .main_con .url_list {
    width: 1000px;
    max-width: calc(100% - 24px);
    margin: 20px auto 0 auto;
    overflow: hidden;
}

.show_page .main_con .url_list .mtable {
    width: 100%;
    border: 1px solid #C1BFA1;
    background: #C1BFA1;
    color: #8a6f07;
    font-size: 13px;
    font-weight: bold;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 10px;
    overflow: hidden;
    table-layout: fixed;
}

.show_page .main_con .url_list .mtable tr {
    border: 1px solid #C1BFA1;
    cursor: pointer;
}

.show_page .main_con .url_list .mtable thead td {
    padding: 8px 15px;
    line-height: 25px;
    background: #FFE685;
}

.show_page .main_con .url_list .mtable tbody td {
    padding: 8px 15px;
    line-height: 25px;
    background: #f5f3dc;
}

.show_page .main_con .url_list .mtable tbody tr:hover td {
    background: #f8f8f8;
}

.show_page .main_con .url_list .mtable td.tc {
    text-align: center;
    width: 20%;
}

.show_page .main_con .url_list .mtable td.tl {
    width: 60%;
}

.show_page .main_con .url_list .mtable td.tz {
    width: 20%;
    text-align: center;
}

.show_page .main_con .url_list .mtable td.tl p {
    display: none;
    margin: 0;
}

.show_page .main_con .url_list .mtable td a {
    color: red;
    font-weight: bold;
    text-decoration: none;
    word-break: break-all;
}

.show_page .main_con .url_list .mtable td a.btn_rf {
    border: 1px solid #8a6f07;
    color: #8a6f07;
    border-radius: 5px;
    margin: 0 5px;
    height: 25px;
    line-height: 25px;
    width: 70px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    float: right;
    font-size: 12px;
}

.show_page .main_con .url_list .mtable td a.btn_rf img {
    margin-right: 3px;
}

.show_page .main_con .url_list .mtable .time {
    color: #19a15f;
}

.show_page .main_con .url_list .mtable .time.fast {
    color: #19a15f;
}

.show_page .main_con .url_list .mtable .time.normal {
    color: #d79500;
}

.show_page .main_con .url_list .mtable .time.slow {
    color: #d21313;
}

.show_page .h5-table {
    display: none;
}

/* =========================
   线路页手机端
========================= */
@media (max-width: 768px) {
    .show_page {
        background-color: #f5f3dc;
        background-image: url("/assets/images/btm_bg.jpg");
        background-repeat: no-repeat;
        background-position: center bottom;
        background-size: 100% auto;
        background-attachment: fixed;
        overflow-x: hidden;
    }

    .show_page .header_pc {
        display: none;
    }

    .show_page .header_h5 {
        display: block;
        width: 100%;
        height: 58px;
        background: #927539 url("/assets/images/top_bg_h5.png") no-repeat center;
        background-size: cover;
    }

    .show_page .header_h5 .con {
        height: 58px;
        position: relative;
    }

    .show_page .header_h5 .btn_l {
        position: absolute;
        left: 10px;
        top: 0;
        height: 58px;
        line-height: 58px;
    }

    .show_page .header_h5 .btn_r {
        position: absolute;
        right: 10px;
        top: 0;
        height: 58px;
        line-height: 58px;
    }

    .show_page .header_h5 .btn_l a,
    .show_page .header_h5 .btn_r a {
        color: #fff;
        text-decoration: none;
        font-size: 13px;
    }

    .show_page .header_h5 img {
        width: 18px;
        height: 18px;
        margin-right: 3px;
        vertical-align: middle;
    }

    .show_page .header_h5 .name {
        text-align: center;
        color: #fff;
        font-size: 16px;
        height: 58px;
        line-height: 58px;
        padding: 0 78px;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    .show_page .header_h5 .name span {
        color: #FFE685;
        font-size: 20px;
        margin-right: 3px;
    }

    .show_page .main_con {
        width: 100%;
        min-width: 0;
        min-height: calc(100vh - 58px);
        background: transparent !important;
        overflow: visible;
        padding-bottom: 0 !important;
    }

    .show_page .main_con .url_list {
        width: auto;
        max-width: none;
        margin: 12px;
        overflow: hidden;
    }

    .show_page .pc-table {
        display: none;
    }

    .show_page .h5-table {
        display: table;
    }

    .show_page .main_con .url_list .mtable {
        width: 100%;
        font-size: 13px;
        border-radius: 8px;
        table-layout: fixed;
    }

    .show_page .main_con .url_list .mtable tbody td {
        padding: 10px 8px;
    }

    .show_page .main_con .url_list .mtable td.tl {
        width: 72%;
    }

    .show_page .main_con .url_list .mtable td.tl p {
        display: block;
        color: #8a6f07;
        font-size: 13px;
        line-height: 22px;
    }

    .show_page .main_con .url_list .mtable td.tl a {
        display: block;
        font-size: 12px;
        word-break: break-all;
    }

    .show_page .main_con .url_list .mtable td.tz {
        width: 28%;
        text-align: center;
    }
}/* 线路表格分割线加强版 */
.show_page .main_con .url_list .mtable {
    border-collapse: collapse;
    border: 1px solid #b9b58e;
}

.show_page .main_con .url_list .mtable thead td {
    border: 1px solid #b9b58e;
    background: #FFE685;
}

.show_page .main_con .url_list .mtable tbody td {
    border: 1px solid #b9b58e;
    background: #f5f3dc;
}