/*common*/
body {
    margin: 0;
    padding: 0;
    font-family: "Microsoft YaHei";
}

.left {
    float: left;
}

.right {
    float: right;
}

ul {
    list-style: none;
    padding: 0;
}

li {
    display: list-item;
    text-align: -webkit-match-parent;
}

a {
    text-decoration: none;
}

.clear {
    clear: both;
}

/*---------------------------------------common-------------------------*/

/*---------------------------------------container-------------------------*/
#container {
    margin: 0 auto;
    width: 1280px;
    min-width: 800px;
    min-height: 600px;
}

.head {
    height: 60px;
    line-height: 60px;
    /*background: #00a0e8 url("../img/header_bg.png") repeat-x;*/
    color: #fff;
    position: relative;
    font-size: 24px;
}

.welcome-container {
    position: absolute;
    top: 0;
    left: 500px;
    font-size: 16px;
    font-weight: 500;
}

.welcome-img {
    width: 26px;
    vertical-align: middle;
    margin-right: 10px;
}

.logo {
    font-weight: bolder;
    width: 1280px;
    margin: 0 auto;
    position: relative;
}

.logout {
    position: absolute;
    right: 30px;
    color: #fff;
    top: 0px;
    font-size: 16px;
}

/*---------------------------------------menu-------------------------*/
.menu {
    margin-top: 0;
    border-bottom: 1px solid #bfbfbf;
    background-color: #fff;
}

.menu-item {
    cursor: pointer;
    border: solid #bfbfbf;
    border-width: 0 1px;
    width: 98px;
    height: 98px;
    position: relative;
}

.nav {
    display: block;
    height: 100%;
    text-align: center;
    position: relative;
}

/*link、hober、active*/
/*.menu-item a:link {
    color: #666;
}*/
.menu-item a:hover {
    background-color: #00a0e8;
}

.menu-item a:active {
    background: none;
}

.menu-pic {
    display: block;
    left: 50%;
    margin-left: -18px;
    position: absolute;
    top: 10px;
    width: 36px;
}

.text {
    font-size: 15px;
    left: 0;
    letter-spacing: 4px;
    line-height: 23px;
    position: absolute;
    top: 50px;
    width: 100%;
    color: #666;
}

/*---------------------------------------tasks-------------------------*/
.workspace {
    margin: 50px 0 10px 10px;
}

.tasks {
    font-size: 16px;
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
}

.tasks > li {
    margin: 0 10px 20px;
    padding: 0;
    cursor: pointer;
    overflow: hidden;
    height: 160px;
    /*border-radius: 5px;*/
   /* box-shadow: 0 1px 1px rgba(0, 0, 0, .05);*/
    width: 190px;
    display: inline-block;
    box-shadow: 2px 2px 10px 1px #ccc;
}

/*link、visited、hover、active*/
.tasks a:link {
    background-color: #00a0e8;
}

.tasks a:visited {
    background-color: #00a0e8;
}

.tasks a:hover {
    background-color: #2fbd81;
}

.tasks a:active {
    background-color: #2fbd81;
}

.task-pic {
    width: 70px;
    position: absolute;
    top: 20px;
    left: 50%;
    margin-left: -35px;
}

.task-name {
    letter-spacing: 4px;
    line-height: 23px;
    position: absolute;
    top: 100px;
    width: 100%;
    left: 0;
    color: #fff;
}

.task-number {
    color: #fff;
    background-color: #f0ad4e;
    position: absolute;
    top: 90px;
    left: 75%;
    font-size: 12px;
    line-height: 1;
    display: inline-block;
    padding: 3px 6px;
    border-radius: 100px;
}

/*---------------------------------------list-view-------------------------*/

.list-view {
    font-size: 16px;
    position: relative;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
    list-style: none;
    background-color: #fff;
    border: solid #bfbfbf;
    border-width: 0 1px;
}

.list-view:after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    content: '';
    -webkit-transform: scaleY(.5);
    transform: scaleY(.5);
    background-color: #bfbfbf;
}

.list-view:before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 1px;
    content: '';
    -webkit-transform: scaleY(.5);
    transform: scaleY(.5);
    background-color: #bfbfbf;
}

.list-view a:link {
}

.list-view a:visited {
}

.list-view a:hover {
    background-color: #00a0e8;
    color: #fff;
}

.list-view a:active {
    background-color: #00a0e8;
    color: #fff;
}

.list-view-item {
    position: relative;
    overflow: hidden;
    -webkit-touch-callout: none;
    height: 40px;
    line-height: 40px;
}

.list-view-item:after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 15px;
    height: 1px;
    content: '';
    -webkit-transform: scaleY(.5);
    transform: scaleY(.5);
    background-color: #bfbfbf;
}

.list-view-divider {
    font-weight: 500;
    position: relative;
    margin-top: -1px;
    margin-left: 0;
    padding-top: 6px;
    padding-bottom: 6px;
    padding-left: 15px;
    color: #999;
    background-color: #e5e5e5;
}

.list-view-divider:after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    content: '';
    -webkit-transform: scaleY(.5);
    transform: scaleY(.5);
    background-color: #bfbfbf;
}

.list-view-divider:before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 1px;
    content: '';
    -webkit-transform: scaleY(.5);
    transform: scaleY(.5);
    background-color: #bfbfbf;
}

/*---------------------------------------dropdown-menu-------------------------*/
.caret {
    display: inline-block;
    width: 0;
    height: 0;
    vertical-align: top;
    border-top: 15px solid transparent;
    border-right: 15px solid #222;
    border-bottom: 15px solid transparent;
    border-left: 15px solid transparent;
    content: "";
    position: absolute;
    top: 40px;
    right: 0px;
}

.dropdown-menu {
    position: absolute;
    top: -100px;
    left: 125px;
    z-index: 1000;
    /* display: none; */
    float: left;
    min-width: 100px;
    padding: 5px 0;
    margin: -1px 0 0;
    margin-left: -1px;
    list-style: none;
    background-color: #ffffff;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, 0.2);
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
}

.sub-dropdown-menu {
    position: absolute;
    top: 10px;
    left: 136px;
    z-index: 1001;
    /* display: none; */
    float: left;
    min-width: 100px;
    padding: 5px 0;
    margin: -1px 0 0;
    margin-left: -1px;
    list-style: none;
    background-color: #ffffff;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, 0.2);
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
}

.dropdown-menu li > a {
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: normal;
    line-height: 20px;
    color: #333333;
    white-space: nowrap;
}

.dropdown-menu .divider {
    height: 1px;
    margin: 9px 1px;
    overflow: hidden;
    background-color: #e5e5e5;
    border-bottom: 1px solid #ffffff;
}

.dropdown-menu li > a:hover, .dropdown-menu li > a:focus {
    text-decoration: none;
    color: #ffffff;
    background-color: #0081c2;
    background-image: -moz-linear-gradient(top, #0088cc, #0077b3);
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0077b3));
    background-image: -webkit-linear-gradient(top, #0088cc, #0077b3);
    background-image: -o-linear-gradient(top, #0088cc, #0077b3);
    background-image: linear-gradient(to bottom, #0088cc, #0077b3);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0);
}

/*---------------------------------------entrance-container-------------------------*/
.entrance-container {
    height: 240px;
    margin-top: 30px;
    white-space: normal;
}

.entrance {
    display: table;
    table-layout: fixed;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

.entrance > li {
    margin: 0;
    padding: 0;
    cursor: pointer;
    display: table-cell;
    height: 100%;
}

.entrance-pic-first {
    width: 250px;
    position: absolute;
    left: 0px;
}

.entrance-pic-last {
    width: 250px;
    position: absolute;
    right: 0px;
}

.entrance-pic {
    width: 250px;
    position: absolute;
    left: 10px;
}

.entrance-name {
    letter-spacing: 4px;
    line-height: 28px;
    position: absolute;
    top: 160px;
    width: 250px;
    left: 0;
    font-size: 18px;
    z-index: 99999;
    text-align: center;
}

.entrance a:link {
    /* color: #fff; */
}

.entrance a:visited {
    color: #222;
}

.entrance a:hover {
    color: #222;
}

.entrance a:active {
    color: #fff;
}

/*---------------------------------------second-nav-------------------------*/
.second-nav-main {
    width: 100%;
    height: 433px;
    margin: 5px 0;
    background-image: url(../img/bg.jpg);
}

.nav-mask {
    width: 100%;
    height: 100%;
    background: #fff;
    opacity: 0.6;
    filter: alpha(opacity=40);
    position: absolute;
}

.second-nav-main a {
    padding: 0;
    display: block;
    position: absolute;
    z-index: 500;
}

.second-nav-main a:hover {
    text-decoration: none;
}

.search-circle {
    background: url(../img/search_circle.png) no-repeat;
}

.search-circle:hover {
    background: url(../img/search_circle_hover.png) no-repeat;
    color: #333;
}

.search-title {
    width: 100px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    font-size: 20px;
    color: #666;
}

.circle {
    color: #fff;
    text-align: center;
    font-size: 15px;
    cursor: pointer;
}

.has_right {
    background: url(../img/blue_circle.png) no-repeat;
    width: 80px;
    height: 81px;
    line-height: 81px;
}

.has_right:hover {
    background: url(../img/green_circle.png) no-repeat;
    width: 81px;
    height: 80px;
    line-height: 80px;
}

.has_right_box {
    background: url(../img/blue_box.png) no-repeat;
    width: 80px;
    height: 80px;
    line-height: 80px;
}

.has_right_box:hover {
    background: url(../img/green_box.png) no-repeat;
    width: 80px;
    height: 80px;
    line-height: 80px;
}

.no_right {
    background: url(../img/black_circle.png) no-repeat;
    width: 80px;
    height: 81px;
    background-size: contain;
    line-height: 81px;
}

.arrow_line {
    width: 124px;
    height: 15px;
    background: url(../img/arrow_line.png) no-repeat;
}

.arrow_line_01 {
    width: 15px;
    height: 124px;
    background: url(../img/arrow_line_01.png) no-repeat;
}

.arrow_line_02 {
    width: 450px;
    height: 206px;
    background: url(../img/arrow_line_02.png) no-repeat;
}

/*.arrow_line_03 {
    display: none;
    width: 350px;
    height: 80px;
    background: url(../img/arrow_line_03.png) no-repeat;
}*/

.arrow_line_solid {
    width: 13px;
    height: 53px;
    background: url(../img/arrow_line_solid.png) no-repeat;
}

/**----------------------recovery car----------------------------**/
.huishou_car_search {
    left: 160px;
    top: 60px;
}

.huishou_car_fill {
    left: 160px;
    top: 185px;
}

.huishou_car_check {
    left: 375px;
    top: 185px;
}

.huishou_car_predo {
    left: 595px;
    top: 185px;
}

.huishou_car_predo_in {
    left: 595px;
    top: 60px;
}

.huishou_car_stock {
    left: 815px;
    top: 185px;
}

.huishou_car_look_destroy {
    left: 160px;
    top: 310px;
}

.huishou_car_cancel {
    left: 375px;
    top: 310px;
}

.huishou_car_payment_audit {
    left: 595px;
    top: 310px;
}

.huishou_car_payment {
    left: 815px;
    top: 310px;
}

.huishou_line01 {
    left: 244px;
    top: 219px;
}

.huishou_line02 {
    left: 462px;
    top: 219px;
}

.huishou_line03 {
    left: 682px;
    top: 219px;
}

.huishou_solid_line01 {
    left: 628px;
    top: 141px;
}

/**----------------------mrp_sale---------------------------**/
.xiaoshou_line01 {
    left: 212px;
    top: 153px;
}

.xiaoshou_line02 {
    left: 455px;
    top: 153px;
}

.xiaoshou_line03 {
    left: 519px;
    top: 102px;
}

/*.xiaoshou_sale_th {
    left: 690px;
    top: 219px;
}*/

.xiaoshou_sale_xc {
    left: 180px;
    top: 70px;
}

.xiaoshou_sale_kf {
    left: 425px;
    top: 70px;
}

.xiaoshou_sale_ck {
    left: 650px;
    top: 70px;
}

.xiaoshou_sale_xc_sk {
    left: 180px;
    top: 280px;
}

.xiaoshou_sale_kf_sk {
    left: 425px;
    top: 280px;
}

/**----------------------mrp_buy---------------------------**/
.caigou_line01 {
    left: 286px;
    top: 143px;
}

.caigou_line02 {
    left: 513px;
    top: 143px;
}

.caigou_line03 {
    left: 454px;
    top: 194px;
}

/*.caigou_buy_search {
    top: 50%;
    left: 100px;
    margin-top: -50px;
    line-height: 240px;
    color: #222;
    font-size: 16px;
}*/

.caigou_buy_goods {
    left: 200px;
    top: 110px;
}

.caigou_buy_return {
    left: 423px;
    top: 322px;
}

.caigou_buy_fk {
    left: 650px;
    top: 110px;
}

.caigou_buy_in {
    left: 424px;
    top: 110px;
    /* margin-top: -40px; */
}

/**----------------------split_car---------------------------**/

.caijie_line01 {
    left: 285px;
    top: 120px;
}

/*.caijie_line02{
    left: 340px;
    top: 112px;
}*/
/*.caijie_list{
    top: 50%;
    left: 100px;
    margin-top: -50px;
    line-height: 240px;
    color: #222;
    font-size: 16px;
}*/
.caijie_split_one {
    left: 200px;
    top: 180px;
}

/*.caijie_split_batch{
    left: 300px;
    top: 300px;
}*/
.caijie_split_task {
    left: 735px;
    top: 90px;
}

.caijie_split_in {
    left: 735px;
    top: 275px;
}

/**----------------------mrp_stock---------------------------**/

.kufang_stock_in {
    left: 170px;
    top: 80px;
}

.kufang_stock_xc {
    left: 400px;
    top: 80px;
}

.kufang_stock_pre {
    left: 630px;
    top: 80px;
}

.kufang_stock_xs {
    left: 170px;
    top: 260px;
}

.kufang_stock_pd {
    left: 630px;
    top: 260px;
}

.kufang_stock_dp {
    left: 400px;
    top: 260px;
}

/**----------------------report---------------------------**/
.report-type {
    margin: -50px 80px 15px 40px;
    position: relative;
    border-bottom: 1px solid #000;
    padding-bottom: 1px;
    font-size: 15px;
    height: 100px;
    white-space: normal;
}

.first-report-type {
    margin-top: 20px;
}

.report-type a {
    margin-right: 60px;
    text-decoration: none;
}

.report-type a:hover {
    text-decoration: none;
}

a.last-report {
    margin-right: 0px;
}

.gt-link {
    font-size: 45px;
    font-family: sans-serif;
    display: inline-block;
}

.empty-circle {
    width: 80px;
    height: 80px;
    border: 1px solid #222;
    border-radius: 100%;
    text-align: center;
    line-height: 80px;
    display: inline-block;
}

.report-entrance {
    width: 110px;
    height: 75px;
    background: #00A0EA;
    border: 1px solid #00A0EA;
    border-radius: 10px;
    display: inline-block;
    text-align: center;
    color: #FFF;
    position: relative;
    line-height: 75px;
    cursor: pointer;
}

.report-entrance:hover {
    background: #2FBD81;
    border: 1px solid #2FBD81;
}

.report-entrance p {
    line-height: 22px;
    position: absolute;
    z-index: 10;
    top: 0;
    padding: 0 20px;
}

.report-entrance.hidden {
    visibility: hidden;
}

/*---------------------------------------other-------------------------*/

.index-main {
    left: 170px;
    overflow: hidden;
}

.messages {
    margin-top: 70px;
}

.news-container {
    width: 95%;
    margin: 2px 15px;
}

.notices-container {
    width: 95%;
    margin: 2px 15px;
}

.item {
    display: block;
    height: 100%;
    text-align: left;
    position: relative;
}

.title {
    font-weight: bold;
    color: #333;
}

.more {
    position: absolute;
    right: 20px;
    color: #666;
}

.status {
    background: #00a0e8;
    font-size: 14px;
    color: #fff;
    /*font-family: cursive;*/
    position: absolute;
    display: inline-block;
    height: 24px;
    line-height: 24px;
    top: 8px;
    left: 10px;
    width: 34px;
    text-align: center;
}

.date {
    position: absolute;
    right: 10px;
    color: #666;
}

.name {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    width: 70%;
    display: inline-block;
    margin-left: 50px;
}

