/* head css */
.head_layer {
    padding: 0 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    border-bottom: 1px #c60f3c solid;
}

.head_right .head_right_in {
    font-size: 16px;
    color: #333;
    cursor: pointer;
}

.head_right .head_right_exit {
    font-size: 16px;
    color: #333;
    display: flex;
}

.head_right_exit div {
    padding: 0 30px;

}

.head_right_exit div:nth-last-child(1) {
    padding-right: 0;
}

.head_left {
    display: flex;
    align-items: center;
}

.head_left_tab {

    display: flex;
}

.left_tab_item {
    font-size: 18px;
    color: #000;
    margin-left: 74px;
    cursor: pointer;
    position: relative;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.activeTab {
    font-weight: bold;
    color: #c60f3c;
}

.activeTab::after {
    content: "";
    width: 100%;
    height: 5px;
    position: absolute;
    bottom: -2px;
    left: 0;
    background-color: #c60f3c;
}

.head_left_logo {
    width: 80px;
    height: 80px;
}

.head_left_logo img {
    width: 100%;
    height: 100%;
}

/* head end */


/* content css*/


.content_layer {
    padding: 100px;
}

.content_box {
    background-color: #fff;
}

.content_bottom {
    margin-top: 50px;

}

.content_bottom_next {
    font-size: 14px;
    color: #c60f3c;
    text-align: center;
}

.content_bottom_btn {
    background-color: #c60f3c;
    color: #fff;
    width: 206px;
    height: 56px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

/* content end */


/* foot css */
.foot_copy {
    /* background-color: #141a25; */
    background-image: linear-gradient(#cbcbcb, #9fa0a3);
    padding: 24px 0;
    font-size: 14px;
    color: #fff;
    text-align: center;
}

.foot_copy span {
    /* margin-right: 10px; */
    display: block;
}

.foot_copy span:nth-last-child(1) {
    margin-top: 10px
}