/*common css*/
*{
	margin: 0;
	padding: 0;	
	font-family: "microsoft yahei";
	font-size: 16px;
	box-sizing: border-box;
}
/* 未勾选中复选框的样式 */
input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    border: 2px solid #ccc;
    outline: none;
    transition-duration: 0.4s;
    transition-timing-function: ease-in-out;
}
/* 勾选中复选框的样式 */
input[type="checkbox"]:checked {
    border: 2px solid #2196F3;
    background-color: #2196F3;
}
/* 勾选中复选框的样式 */
input[type="checkbox"]:checked::before {
    content: "\2713";
    display: block;
    text-align: center;
    line-height: 20px;
    color: #fff;
    font-size: 16px;
}
/* 未勾选中复选框的样式 */
input[type="checkbox"]::before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    margin: 0 auto;
    line-height: 20px;
    text-align: center;
    color: #fff;
    font-size: 16px;
}
/* 未勾选中单选框的样式 */
input[type="radio"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    border: 2px solid #ccc;
    outline: none;
    transition-duration: 0.4s;
    transition-timing-function: ease-in-out;
}
/* 勾选中单选框的样式 */
input[type="radio"]:checked {
    border: 2px solid #2196F3;
    background-color: #2196F3;
}
    /* 勾选中单选框的样式 */
    input[type="radio"]:checked::before {
        content: "\2713";
        display: block;
        text-align: center;
        line-height: 20px;
        color: #fff;
        font-size: 16px;
    }
/* 未勾选中单选框的样式 */
input[type="radio"]::before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    margin: 0 auto;
    line-height: 20px;
    text-align: center;
    color: #fff;
    font-size: 16px;
}
/* 文本框字体加粗样式 */
input[type="text"] {
    font-weight: bold;
}
/* 文本框字体加粗样式 */
input[type="password"] {
    font-weight: bold;
}
/* 文本框字体加粗样式 */
input[type="number"] {
    font-weight: bold;
}
/* 文本框字体加粗样式 */
input[type="email"] {
    font-weight: bold;
}
/* 文本框字体加粗样式 */
input[type="tel"] {
    font-weight: bold;
}
/* 文本框字体加粗样式 */
input[type="date"] {
    font-weight: bold;
}
/* 文本框字体加粗样式 */
input[type="time"] {
    font-weight: bold;
}
/* 文本框字体加粗样式 */
input[type="datetime"] {
    font-weight: bold;
}
/* 文本框字体加粗样式 */
input[type="datetime-local"] {
    font-weight: bold;
}
/* 文本框字体加粗样式 */
input[type="month"] {
    font-weight: bold;
}
/*下拉框选中字体加粗*/
select option:checked {
    font-weight: bold;
}
/*文本区域字体加粗*/
textarea {
    font-weight: bold;
}

a{ color:#000; text-decoration: none; }
body{ position: relative; }
/*head menu*/
.mainHeaderBar{
    height:65px;
    padding: 0 20px;
    list-style:none;
    overflow:hidden;
    white-space: nowrap;
    background-color: #8eaba3;
}
.mainHeaderLogo { float:left; width:220px; height:65%; vertical-align:top; background:url(../img/fujiFilm.gif) no-repeat top center; }
.mainHeaderMenu{ float:left; line-height:65px; }
.dropButton{ font-size:18px; padding:0px 20px; display:block;}
.dropDown_Content {
    position: absolute;
    display: none;
    min-width: 100px;
    background-color: #8eaba3;
    box-shadow: 0px 8px 15px 0px rgba(0,0,0,0.2);
}
.dropDown:hover .dropButton,.dropButton:hover{ background-color:#0066FF; color:#fff; }
.dropDown:hover .dropDown_Content{ display: inline-block; }
.dropDown_Content a{ line-height:48px; padding:0px 16px; display:block; }
.dropDown_Content a:hover{ color:white; background-color:#0066FF; }

/*右上角欢迎管理员*/
.mainHeaderRight { float:right; font-size: 15px; }
.mainHeaderRight a{	text-align: right; font-size: 14px; }
.mainHeaderRight a:hover{ color:white; background-color:#8eaba3; }
/*footer style*/
footer{ position:fixed; bottom:0; z-index:50; width:100%; height:40px; line-height:40px; background:#8eaba3; text-align:center; color:#FFFFFF; }

/*login style*/
.loginHeaderBar { width:100%; height:65px; position:fixed; top:0; z-index:99; background-color:#8eaba3; }
.headerLogo { position:absolute; width:220px; height:100%; vertical-align:top; background:url(../img/fujiFilm.gif) no-repeat left center;}
.headerLogo b{ position:absolute; color:#FFFFFF; white-space:nowrap; font-size:22px;  margin-top:15px; margin-left:250px;}
.mainFrame { margin:0px auto 40px auto; }   
.loginContent{ width:1190px; overflow:hidden; margin:0 auto; }
.loginLeftImage { float: left; width: 550px; height:397px; background: url(../img/fuji.png) no-repeat center center; background-size: 100%; }
.loginImage { margin: 0 auto; width: 800px; height: 577px; background: url(../img/fuji.png) no-repeat center center; background-size: 100%; }
.loginInfo{	
    margin-top: 40px;
    float:right;
    width: 380px;
    height: 380px;
    padding: 25px;
    text-align: center;
    border: 2px solid #8eaba3;
    border-radius: 20px;
    box-shadow: 0px 0px 5px #8eaba3;
}
.loginInfo span{ font-size:26px; color:#8eaba3; font-weight:bold; }
.loginEntryUser{ background: url(../img/bgUser.gif) no-repeat 3px 8px; }
.loginEntryPwd{	background: url(../img/bgPwd.gif) no-repeat 3px 8px; }
.loginEntryUser,.loginEntryPwd{
	width: 250px;
	height: 45px;
	padding: 0 5px 0 35px;
	margin-bottom: 10px;
	font-size: 14px;
	border: 1px solid #8eaba3;
	border-radius: 2px;
	background-size: 25px;
}
.loginButton{
	width: 180px;
	height: 50px;
	border:1px solid #8eaba3;
	border-radius: 5px;
	color: #8eaba3;
	background: #FFFFFF;
	font-weight: 600;
}
.loginButton:hover{
	background: #8eaba3;
	border:1px solid #8eaba3;
	color: #FFFFFF;
	transition: all ease 0.4s;
}

/* Home */
.homeContent{padding-top: 40px; text-align:center; font-size:40px; color:#8eaba3;font-family:'Comic Sans MS';}

/* table content */
.tblCon{ padding: 25px 0; box-shadow: 0px 0px 5px rgb(145, 157, 165); }
.tblCon table{ margin: 0 auto; }
.tblTitle{	
	font-weight: bold;
	font-size: 24px;
    color: #000;
    text-align: center;
    padding-bottom:15px;
}
.listTitle { color: #FFFFFF; background-color:#608479; }
.tblList{ margin-top:15px !important; border-color:#8eaba3; border-collapse: collapse; }
.tblList td { padding:5px 5px; }
.tblComment{ text-align:left; font-size: 14px; color: #333333; }
.tblButton{
    color: #FFFFFF;
    padding:4px 15px;
    border: 1px solid #608479;
    background: #608479;
    border-radius: 5px;
    box-shadow: 0px 0px 4px #608479;
    cursor: pointer;
}

/*招标授权和备货申请中table title的宽度*/
.tblDetail { border-color: #000; }
.tblDetail td{ padding:5px 10px; height:40px;}
.tblDetailTitle{ font-size:18px; font-weight:bold; }
.tdDetailHead{
    background-color: darkgray;
	font-weight: bold;
    font-size:15px;
	text-align: left;
}
.tdDetailHeadHightLight {
    background-color: yellow;
	font-weight: bold;
    font-size:15px;
	text-align: left;
}
/*.divDetailButton{ text-align: center; padding-top:20px; padding-bottom:30px; }*/
.backPage { color:#8eaba3; font-weight:bold; font-size:16px; }
.backPage:hover{ color: #0066FF;}

/* Common css*/
.tblBar{ padding:0 20px;}
.required { color: #CB1C1D; align-content: center; padding:0 6px; font-size:14px; }
.imageButton,button,.cursor{ cursor:pointer; }
.hidden { display:none;font-size:0; }
.button{ color:#FFFFFF; padding:10px 15px; background:#608479; border:1px solid #608479; border-radius:5px; box-shadow:0px 0px 4px #608479; }
.buttonRight{ float:right; }
.tdListCenter{ text-align:center; }
.tdListLeft{ text-align:left; }
.tdListRight{ text-align:right; }


.flex{display:flex;}
.flex-column{flex-direction: column;}
.flex-row{flex-direction: row;}
.justify-content-space-between{justify-content:space-between;}
.justify-content-center{justify-content:center;}
.justify-content-flex-end{justify-content:flex-end;} 
.justify-content-flex-start{justify-content:flex-start;} 
.justify-content-space-evenly {justify-content:space-evenly;} 
.align-content-base{align-content:baseline;}
.align-items-flex-end{align-items:flex-end;}
.align-items-center{align-items:center;}
.flex-autosize{flex:1;}
textarea {resize: none;width: 85%;}
.full-width{width:100%;}
.full-height{height:100%;}
.button2 {
    display: none;
    margin-top: 5px;
    border: 1px solid #778E88;
    color: #000;
    background: #8eaba3;
    border-radius: 5px;
    box-shadow: 0px 0px 4px #64897F;
    cursor: pointer;
    font-weight: bold;
    padding: 5px 10px;
    font-size: 14px;
}
.button3 {
    border: 1px solid #778E88;
    color: #000;
    background: #8eaba3;
    border-radius: 5px;
    box-shadow: 0px 0px 4px #64897F;
    cursor: pointer;
    font-weight: bold;
    padding: 5px 10px;
    font-size: 14px;
}
.FileSalesCommitmentUnStandard input {
    width: 40px;
    text-align: center;
}
.inner-pager-button {
    border: 1px solid #778E88;
    color: #000;
    background: #8eaba3;
    border-radius: 5px;
    box-shadow: 0px 0px 4px #64897F;
    cursor: pointer;
    font-weight: bold;
    padding: 5px 10px;
    font-size: 14px;
}
#SynchronousMoaFile{
    margin-left:50px;
}
#FileConfidentialLine li {
    padding-top: 3px;
    padding-bottom: 3px;
    list-style: none;
}
#FileConfidentialLine li input {
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 3px;
}
.divApprovalAuthority {
    width: 110px;float:left;
    padding-right:10px;
    display:none;
}
.btnSendToFortune {
    background-color: #8eaba3;
    cursor: default;
}