.dialog {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}
.dialog .dialog_content {
    width: 471px;
    background-color: #ffffff;
    border-radius: 4px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin: auto;
    box-sizing: border-box;
}
.dialog .dialog_content .shut_icon {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 22px;
    right: 24px;
    cursor: pointer;
}
.dialog .suc {
    padding: 30px 0;
    text-align: center;
}
.dialog .suc .title {
    color: #666666;
    font-size: 20px;
    display: block;
    font-weight: bold;
}
.dialog .suc img {
    margin: 18px 0;
}
.dialog .suc .desc span {
    color: #999999;
    font-size: 13px;
    line-height: 22px;
    text-align: center;
    display: block;
}
.dialog .bt_bt {
    margin: 20px 0 14px 0 ;
    cursor: pointer;
}
.dialog .bt_bt span {
    color: #ffffff;
    display: inline-block;
    width: 302px;
    height: 42px;
    line-height: 42px;
    border-radius: 4px;
    background-color: #3573EC;
    text-align: center;
}


.dialog .not_login {
    width: 302px;
    margin: 0 auto;
}
.dialog .select {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}
.dialog .select_item {
    display: flex;
    color: #666666;
    font-size: 14px;
}
.dialog .select_item img {
    margin-right: 5px;
    cursor: pointer;
}
.dialog .not_login input {
    width: 290px;
    height: 38px;
    outline: none;
    background: #FCFCFC;
    border: 1px solid #E5E5E5;
    padding-left: 10px;
    font-size: 14px;
    margin-top: 25px;
    border-radius: 4px;
}
.dialog .not_login form .code {
    width: 188px;
}
.dialog .not_login form .bt {
    display: inline-block;
    width: 91px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border: 1px solid #E5E5E5;
    color: #666666;
    background-color: #FCFCFC;
    border-radius: 4px;
    cursor: pointer;
}
.dialog .bt_content {
    color: #666666;
    font-size: 12px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 37px;
}
.dialog .bt_content span::before{
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #DCDCDC;
    margin-right: 5px;
    transform: translate(0, -2px);
}

.dialog .exit_login {
    width: 302px;
    margin: 0 auto;
}
.dialog .exit_login select {
    width: 290px;
    height: 38px;
    outline: none;
    background: #FCFCFC;
    border: 1px solid #E5E5E5;
    padding-left: 10px;
    font-size: 14px;
    margin-top: 8px;
    border-radius: 4px;
}
.dialog .exit_login form span {
    display: block;
    color: #999999;
    font-size: 12px;
    margin-top: 20px;
}
.dialog .exit_login .select_menu {
    position: relative;
}
.dialog .exit_login .select_menu div { 
    color: #333333;
    font-size: 14px;
    height: 40px;
    line-height: 40px;
    border: 1px solid #E5E5E5;
    border-radius: 4px;
    background: url('../../images/business_detail/down_icon.png') no-repeat right 15px center;
    cursor: pointer;
    padding-left: 14px;
    margin-top: 8px;
}
.dialog .exit_login .select_menu ul{ 
    -webkit-box-sizing: border-box; 
    box-sizing: border-box; 
    position: absolute; 
    top: 41px; 
    padding: 0 14px ; 
    border: 1px solid #e3e3e3; 
    background: #fff; 
    z-index: 2; 
    display: none; 
    -webkit-transition: all .3s; 
    transition: all .3s;
    box-shadow: 0px 0px 10px #eeeeee, 0px 0px 10px #eeeeee;
    max-height: 125px;
    overflow-y: scroll;
}
.dialog .exit_login .select_menu ul li{ 
    cursor: pointer; 
    width: 268px; 
    height: 40px; 
    line-height: 40px;
    font-size: 14px; 
    color: #666666;
    border-bottom: 1px solid #F2F2F2;
}
.dialog .exit_login .select_menu ul li:hover{ 
    color: #3573EC;
}

.dialog .exit_login .select_menu ul::-webkit-scrollbar {
    width: 4px;
}
.dialog .exit_login .select_menu ul::-webkit-scrollbar-thumb {
    background-color: rgba(144,147,153,.3);
    -webkit-border-radius: 2em;
    -moz-border-radius: 2em;
    border-radius: 2em;
}
.dialog .exit_login .select_menu ul::-webkit-scrollbar-track {
    background-color: #fff;
    -webkit-border-radius: 2em;
    -moz-border-radius: 2em;
    border-radius: 2em;
}

.dialog_content_report {
    background-color: #ffffff;
    border-radius: 4px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin: auto;
    box-sizing: border-box;
    padding: 60px 40px 27px;
}
.dialog .dialog_content_report .shut_icon {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 22px;
    right: 24px;
    cursor: pointer;
}