.banner {
    height: 300px;
    background: url(/Public/images/new_images/banner/supplier_banner.png) no-repeat;
    text-align: center;
}
.banner h2 {
    color: #fff;
    font-size: 44px;
    padding: 76px 0 21px 0;
    font-weight: normal;
}
.banner .join_btn {
    width: 160px;
    height: 34px;
    background: #fff;
    border: 1px solid #fff;
    border-radius: 80px;
    font-size: 18px;
    color: #ec7611;
}
.banner .join_btn:active {
    background: #ec7611;
    color: #fff;
    border-color: #ec7611;
}

.rightCon_top {
    margin-bottom: 60px;
}
.rightCon_top .rightCon_top_img {
    position: relative;
    width: 290px;
    height: 158px;
    background: url(/Public/images/new_images/supplier_bg.png) no-repeat;
    text-align: center;
}
.rightCon_top .rightCon_top_img:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0;
    transition: opacity ease 0.5s
}
.rightCon_top .rightCon_top_img:hover:after {
    opacity: 0.5;
}
.rightCon_top .rightCon_top_img:hover .open_layer_btn {
    opacity: 1;
}
.rightCon_top .rightCon_top_img .open_layer_btn {
    position: relative;
    z-index: 9;
    margin-top: 61px;
    width: 150px;
    height: 36px;
    background: #ec7612;
    border-radius: 2px;
    color: #fff;
    opacity: 0;
    transition: opacity ease 0.2s
}
.rightCon_top .rightCon_top_img .open_layer_btn:active {
    background: #cc5200;
}
.rightCon_top .rightCon_top_process {
    width: 640px;
    height: 158px;
    margin-left: 10px;
    background: #f7f7f7;
    text-align: center;
}
.rightCon_top .rightCon_top_process .process_title {
    font-weight: bold;
    color: #666;
    font-size: 16px;
    padding: 28px 0 16px 0;
}
.rightCon_top .rightCon_top_process .process_list {
    display: inline-block;
    font-size: 0;
}
.rightCon_top .rightCon_top_process .process_item {
    position: relative;
    display: inline-block;
}
.rightCon_top .rightCon_top_process .process_item .step_icon {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #ec7611;
}
.rightCon_top .rightCon_top_process .process_item .step_icon:after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 24px;
    height: 24px;
    transform: translate(-50%, -50%);
    background: url(/Public/images/new_images/icon.png);
    background-position: 0 0;
}
.rightCon_top .rightCon_top_process .process_item.step2 .step_icon:after {
    background-position: -26px 0;
}
.rightCon_top .rightCon_top_process .process_item.step3 .step_icon:after {
    background-position: -53px 0;
}
.rightCon_top .rightCon_top_process .process_item strong {
    font-size: 18px;
    color: #ec7611;
}
.rightCon_top .rightCon_top_process .process_item span {
    color: #333;
    font-size: 14px;
}
.rightCon_top .rightCon_top_process .process_item:nth-child(2) {
    margin: 0 164px;
}
.rightCon_top .rightCon_top_process .process_item:nth-child(2):before,
.rightCon_top .rightCon_top_process .process_item:nth-child(2):after {
    content: '';
    position: absolute;
    top: 25px;
    width: 110px;
    border-top: 1px dashed rgba(236, 118, 18, 0.5)
}
.rightCon_top .rightCon_top_process .process_item:nth-child(2):before {
    left: -136px;
}
.rightCon_top .rightCon_top_process .process_item:nth-child(2):after {
    right: -136px;
}
.container_info h4 {
    font-size: 18px;
}
.container_info .info_item {
    margin-top: 24px;
}
.container_info .tel_info, 
.container_info .email_info,
.container_info .address_info{
    position: relative;
    font-weight: 600;
}
.container_info .tel_info {
    padding-left: 22px;
}
.container_info .email_info {
    padding-left: 24px;
}
.container_info .address_info {
    padding-left: 20px;
}
.container_info .tel_info:before {
    content: "";
    position: absolute;
    left: 0;
    top: 1px;
    width: 16px;
    height: 18px;
    background: url(/Public/images/new_images/icon.png) no-repeat -101px -6px;
}
.container_info .email_info:before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    width: 18px;
    height: 14px;
    background: url(/Public/images/new_images/icon.png) no-repeat -119px -8px;
}
.container_info .address_info:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 14px;
    height: 18px;
    background: url(/Public/images/new_images/icon.png) no-repeat -85px -6px;
}
.container_info .info_item p {
    margin-top: 9px;
}
.container_info .info_item em {
    color: #666;
}

/* 弹层样式 */
@keyframes bounce {
    0% {
        top: -50%;
    }
    100% {
        top: 50%
    }
}

.layer_bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10;
}
.layer_con {
    position: absolute;
    left: 50%;
    z-index: 100;
    /* top: 50%; */
    transform: translate(-50%, -50%);
    width: 680px;
    padding: 40px 60px;
    background: #fff;
    border-radius: 2px;
    font-size: 12px;
    line-height: 18px;
    animation: bounce 0.3s ease-in;
    animation-fill-mode: forwards;
}
.clause_title {
    text-align: center;
    font-size: 20px;
}
.clause_sub_title {
    margin: 15px 0;
    font-size: 14px;
}
.layer_main_con {
    max-height: 426px;
    overflow-y: auto;
    margin-bottom: 24px; 
}
.layer_checkbox_text {
    vertical-align: 1px;
}
.layer_con .btns_wrap {
    margin-top: 30px;
    text-align: center;
}
.layer_con h3 {
    margin-top: 24px;
    font-size: 14px;
}
.layer_con img {
    margin-top: 5px;
    vertical-align: bottom;
}
.layer_close_btn {
    position: absolute;
    right: 15px;
    top: 15px;
    width: 20px;
    height: 20px;
    background: url(/Public/images/new_images/icon.png) no-repeat 0 -68px;
}
.layer_close_btn:active {
    background-position: -21px -68px;
}
.checkbox {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 1px solid #333;
    border-radius: 2px;
    vertical-align: -3px;
}
.real_checkbox:checked + .checkbox {
    background: url(/Public/images/new_images/icon.png) no-repeat -185px -31px;
}
.prev_btn, .next_btn {
    box-sizing: border-box;
    min-width: 195px;
    height: 36px;
    padding: 0 18px;
    font-size: 14px;
    border-radius: 2px;
}
.prev_btn {
    border: 1px solid #999;
    background: #fff;
    color: #666;  
}
.prev_btn:active {
    background: #ddd;
}
.next_btn {
    background: #ec7611;
    color: #fff;
    margin-left: 10px;
}
.next_btn.grey, .next_btn.grey:active {
    background: #ccc;
}
.next_btn:active {
    background: #cc5200
}  /* i i s 7 . c o m */