/* 头部 */

.home {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.home_head {
    width: calc(100% - 40px);
    padding: 8px 20px;
    background-color: #d03636;
    display: flex;
    align-items: center;
    color: #fff;
}

.head_head_logo {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.head_head_text {
    width: calc(100% - 60px);
    text-align: center;
}


/* 内容直选 */

.home_body {
    padding: 0 10px;
    padding-top: 20px;
    padding-bottom: 50px;
    overflow-y: auto;
    overflow-x: hidden;
    height: calc(100% - 115px);
}

.home_body_choose {
    display: flex;
    align-items: center;
    justify-content: center;
}

.choose_span {
    background-color: #fff;
    color: #e94747;
    padding: 6px 30px;
    border: 1px solid #e94747;
}

.choose_span:nth-child(1) {
    border-bottom-left-radius: 5px;
    border-top-left-radius: 5px;
}

.choose_span:nth-child(2) {
    border-bottom-right-radius: 5px;
    border-top-right-radius: 5px;
}

.choose_active {
    background-color: #d81e06 !important;
    color: #fff !important;
    border-color: #d81e06 !important;
}

.home_body_straight,
.home_body_group {
    margin-top: 10px;
}

.content_one {
    border: 1px solid #ccc;
    box-sizing: border-box;
    padding: 15px;
}

.content_choose {
    display: flex;
    align-items: center;
}

.content_choose span {
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    border: 1px solid #ccc;
    box-sizing: border-box;
    margin-left: 5px;
    color: #2525254f;
}

.content_choose span:nth-child(1) {
    margin-left: 0;
}

.content_btn_nav {
    width: 100%;
    margin-top: 15px;
    padding-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content_btn_nav .content_btn {
    width: 60px;
    height: 22px;
    color: #2525254f;
    border: 1px solid #4242424f;
    display: flex;
    margin-left: 5vw;
}

.content_btn_nav .content_btn:nth-child(1) {
    margin-left: 0;
}

.content_btn_icon {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #4242424f;
}

.content_btn_icon span {
    width: 12px;
    height: 12px;
    background-color: #fff;
    border-radius: 50%;
}

.content_btn_text {
    width: calc(100% - 22px);
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* 内容组选 */

.content_two,
.content_three {
    padding: 10px;
}

.content_two p,
.content_three p {
    position: relative;
    padding-left: 10px;
    padding-bottom: 10px;
    font-weight: 600;
    border-bottom: 1px solid #4242424f;
    box-sizing: border-box;
}

.content_two p span,
.content_three p span {
    position: absolute;
    left: 0;
    top: 4px;
    width: 2px;
    height: 12px;
    background-color: black;
}

.content_two .content_filter {
    padding-bottom: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.content_two .content_filter li {
    width: 24%;
    text-align: center;
    padding: 5px 0;
    border: 1px solid #4242424f;
    box-sizing: border-box;
    border-radius: 5px;
    margin-top: 10px;
    cursor: pointer;
}

.filter_active {
    background-color: #ce0505;
    color: #fff;
}

.content_three {
    padding-top: 0;
}

.content_three p {
    border-bottom: 0;
}

.content_three p i {
    zoom: 0.8;
    color: #ccc;
}

.content_three .content_result {
    height: 150px;
    border: 1px solid #4242424f;
    box-sizing: border-box;
    padding: 4px;
    overflow-y: auto;
    overflow-x: hidden;
}

.content_group {
    margin-top: 15px;
    display: flex;
    justify-content: center;
}

.content_group_nav {
    display: flex;
}

.content_group_nav span {
    width: 20px;
    height: 20px;
    border: 1px solid #4242424f;
    box-sizing: border-box;
    margin-right: 5px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content_group_nav:nth-child(1) {
    margin-right: 20px;
}

.carousel-inner img {
    width: 100%;
    height: 100%;
}


/* 轮播图 */

.SwiperBox {
    position: relative;
    width: 100%;
    height: 200px;
    box-sizing: border-box;
    cursor: pointer;
    overflow: hidden;
    margin: 0 auto;
    margin-bottom: 60px;
}

.imgBox {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    min-width: 335px;
    height: 200px;
    display: flex;
    justify-content: flex-start;
}


/* 图片默认样式 */

.imgBox img {
    flex-shrink: 0;
    width: 100%;
    height: 200px;
}


/* 两个按钮共有的样式,也可直接使用箭头图片替代 */

.leftBtn,
.rightBtn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(109, 109, 109, 0.445);
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    font-size: 12px;
    font-weight: 500;
}

.leftBtn {
    left: 10px;
}

.rightBtn {
    right: 10px;
}


/* 下方指示器盒子 */

.instBox {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 10px;
    display: flex;
}


/* 小圆点 */

.inst {
    width: 8px;
    height: 8px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    margin-right: 8px;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
}

.inst:last-child {
    margin-right: 0px;
}

.instActv {
    border: 1px solid #0066ff;
    box-sizing: border-box;
    background: #0066ff;
}


/* 底部 */

.home_foot {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    background-color: #ccc;
    display: flex;
    justify-content: center;
    color: #fff;
    padding: 10px 0;
}

.home_foot_btn {
    padding: 5px 10px;
    border-radius: 5px;
    margin-left: 1vw;
}

.home_foot_btn:nth-child(1) {
    margin-left: 0 !important;
}

.home_foot_btn:nth-child(2),
.home_foot_btn:nth-child(3) {
    background-color: #3896ee;
}

.home_foot_btn:nth-child(1),
.home_foot_btn:nth-child(4) {
    background-color: #d03636;
}

.tailAnd,
.span,
.explain,
.yardsTwo,
.groupBroken,
.twelveRoad {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}


/* 介绍 */

.explain_nav {
    height: 100%;
}

.explain_introduce {
    display: flex;
    background-color: #fff;
}

.explain_nav_title {
    display: flex;
    flex: 3.33333;
    justify-content: center;
    padding: 15px 0;
    font-size: 16px;
}

.active_title {
    color: #e64444;
    border-bottom: 1px solid #e64444;
    box-sizing: border-box;
}

.explain_nav_content {
    height: calc(100% - 160px);
    overflow-x: hidden;
    overflow-y: auto;
    padding: 20px;
}


/* 和尾 */

.tailAnd_nav {
    height: 100%;
    position: relative;
}

.tailAnd_nav_head {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #2525254f;
    box-sizing: border-box;
}

.tailAnd_nav_head img {
    vertical-align: middle;
}

.tailAnd_nav .tailAnd_nav_head p {
    padding: 6px 20px;
    padding-right: 10px;
    position: relative;
    font-weight: 600;
    box-sizing: border-box;
}

.tailAnd_nav .tailAnd_nav_head p span {
    position: absolute;
    left: 10px;
    top: 9px;
    width: 2px;
    height: 13px;
    background-color: #ce0505;
}

.tailAnd_nav_content {
    padding: 15px;
}

.tailAnd_nav_content .content_one,
.spanData_nav_content .content_one {
    border: 0;
}

.tailAnd_span {
    border-radius: 0 !important;
    color: #353030;
}

.tailAnd_nav_modal {
    position: absolute;
    top: 46px;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
}


/* 跨度 */

.spanData_nav {
    height: 100%;
    position: relative;
}

.spanData_nav_head {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #2525254f;
    box-sizing: border-box;
}

.spanData_nav_head img {
    vertical-align: middle;
}

.spanData_nav_head p {
    padding: 6px 20px;
    padding-right: 10px;
    position: relative;
    font-weight: 600;
    box-sizing: border-box;
}

.spanData_nav_head p span {
    position: absolute;
    left: 10px;
    top: 9px;
    width: 2px;
    height: 13px;
    background-color: #ce0505;
}

.spanData_nav_content {
    padding: 15px;
}

.nav_list_btn {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
}

.cancel_btn,
.submit_btn {
    width: 48%;
    height: 45px;
    border-radius: 3px;
    background-color: #65a0f8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
}

.submit_btn {
    background-color: #d82d17;
}

.spanData_nav_modal {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
}


/* 两码 */

.yardsTwo_nav {
    height: 100%;
}

.yardsTwo_nav_head {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #2525254f;
    box-sizing: border-box;
}

.yardsTwo_nav_head img {
    vertical-align: middle;
}

.yardsTwo_nav .yardsTwo_nav_head p {
    padding: 6px 20px;
    padding-right: 10px;
    position: relative;
    font-weight: 600;
    box-sizing: border-box;
}

.yardsTwo_nav .yardsTwo_nav_head p span {
    position: absolute;
    left: 10px;
    top: 9px;
    width: 2px;
    height: 13px;
    background-color: #ce0505;
}

.yardsTwo_nav_content {
    padding: 15px;
}

.yardsTwo_nav_content .content_choose span {
    border-radius: 0;
    color: #353030;
    margin-top: 5px;
    width: 26px;
    height: 26px;
}

.yardsTwo_nav_content .content_choose span:nth-child(1) {
    margin-left: 5px;
}

.nav_content_head {
    border: 1px solid #ccc;
    box-sizing: border-box;
    padding: 15px;
    border-bottom: 0;
    display: flex;
    justify-content: center;
}

.nav_content_head span {
    padding: 5px 10px;
    border: 1px solid #ce0505;
    box-sizing: border-box;
    margin: 0 8px;
}

.hundred_active {
    color: #fff;
    background-color: #ce0505;
}

.nav_list_btn {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
}

.cancel_btn,
.submit_btn {
    width: 48%;
    height: 45px;
    border-radius: 3px;
    background-color: #65a0f8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
}

.submit_btn {
    background-color: #d82d17;
}

.yardsTwo_nav_modal {
    position: absolute;
    top: 46px;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
}

.modal_nav {
    width: 300px;
    max-height: 270px;
    margin-top: 30%;
    border-radius: 8px;
    background-color: #fff;
    font-size: 16px;
}

.modal_nav_head {
    background-color: #ef4932;
    height: 40px;
    width: 100%;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.modal_nav_content {
    padding: 15px;
    text-align: center;
    min-height: 200px;
}

.modal_nav_btn {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f1f1f1;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.tips_nav_modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
}

.tips_nav_modal .modal_nav {
    margin-top: 50%;
}

.occur_nav_body {
    margin-top: 10px;
    padding: 0 10px;
}

.occur_textarea {
    display: flex;
    justify-content: space-between;
    width: 100%;
    overflow: hidden;
}

.occur_textarea_left,
.occur_textarea_right {
    width: 49%;
}

textarea {
    width: calc(100% - 12px);
    padding: 5px;
}

.occur_condition {
    margin: 5px auto;
    display: flex;
    justify-content: center;
}

.occur_condition p {
    color: #999;
}

.condition_nav {
    display: flex;
    align-items: center;
    margin-left: 10px;
}

.condition_border {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 5px;
}

.condition_border_active {
    width: 8px;
    height: 8px;
    background-color: #0075ff;
    border-radius: 50%;
}

.border_active {
    background-color: #0075ff;
}

.occur_content {
    width: calc(100% - 10px);
    padding: 5px;
    height: 300px;
    background-color: #fff;
    border: 1px solid #999;
    margin-top: 10px;
    overflow-y: auto;
    overflow-x: hidden;
    word-wrap: break-word;
}

.occur_content span:last-child i {
    display: none;
}


/* 断组 */

.groupBroken_nav {
    height: 100%;
    margin: 10px;
}

.groupBroken_nav .nav_broken_col {
    border: 1px solid #4242424f;
    display: flex;
    align-items: center;
    margin: 10px 0;
    padding: 10px;
    padding-top: 0px;
    box-sizing: border-box;
}

.broken_choose .tailAnd_span:nth-child(1) {
    margin-left: 5px !important;
}

.broken_choose .tailAnd_span {
    margin-top: 10px !important;
}

.broken_choose {
    flex-wrap: wrap;
}

.nav_broken_increase {
    width: 100%;
    margin: 15px 0;
    display: flex;
    justify-content: center;
}

.nav_broken_increase .result_addData {
    padding: 5px 30px;
    border-radius: 20px;
    background-color: #353030;
    color: #fff;
    display: flex;
    align-items: center;
}

.nav_broken_result {
    height: 150px;
    border: 1px solid #4242424f;
    margin: 10px 0;
    padding: 10px;
}


/* 012路 */

.twelveRoad_nav {
    height: 100%;
    position: relative;
    overflow-y: auto;
    overflow-x: hidden;
}

.twelveRoad_nav_content .twelveRoad_nav_col {
    border-bottom: 1px solid #4242424f;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    padding: 15px 10px;
}

.content_choose .twelveRoad_span {
    width: 65px !important;
    height: 30px !important;
}

.twelveRoad_choose {
    flex-wrap: wrap;
}

.twelveRoad_choose span:nth-child(1) {
    margin-left: 5px
}

.twelveRoad_choose span {
    margin-top: 10px;
}

.twelveRoad_nav_content .zu_col {
    align-items: baseline;
    padding-top: 5px;
}

.twoClose_line {
    border: 1px solid #4242424f !important;
    box-sizing: border-box;
}