@import url(yzui.css);
@font-face {
	font-family: "jedatefont";
	src: url('jedatefont.eot?t=1510763148800'); /* IE9*/
	src: url('jedatefont.eot?t=1510763148800#iefix') format('embedded-opentype'), /* IE6-IE8 */  url('jedatefont.woff?t=1510763148800') format('woff'),  url('jedatefont.ttf?t=1510763148800') format('truetype'), /* chrome, firefox, opera, Safari, Android, iOS 4.2+*/  url('jedatefont.svg?t=1510763148800#jedatefont') format('svg'); /* iOS 4.1- */
}
.nav {
	width: 125px;
	background-color: #00b2b3;
	position: fixed;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 999;
}
.nav .logo {
	margin-top: 20px;
}
.nav .logo img{ display:block; margin: 0 auto;}

.nav ul {
	margin-top: 20px;
	display: flex;
	flex-direction: column;
	height: -webkit-calc(100% - 140px); 
	height: calc(100% - 140px);
}  

@media (max-height:768px){
	.nav .logo img{ width: 60px!important; height: 60px!important; border-radius: 50%!important;}
	/*.nav ul{
		height: -webkit-calc(100% - 120px); 
		height: calc(100% - 120px);
	}*/
}
 
.nav ul li {
	width: 120px;
	margin-left: 5px;
	max-height: 120px;
	text-align: center;
	flex: 1;
}
.nav ul li a {
	font-size: 16px;
	color: #ffffff;
	display: flex;
	flex-direction:column;
	justify-content: center;
	width: 100%;
	height: 100%;
	/*padding-top: 40px;*/
}
.nav ul li .img img:nth-child(2) {
	display: none;
}
.nav ul li .tex {
	margin-top: 10px;
}
.nav ul li:hover, .nav ul li.active {
	background-color: #eafafa;
}
.nav ul li:hover a, .nav ul li.active a {
	color: #00b2b3;
}
.nav ul li:hover .img img:nth-child(2), .nav ul li.active .img img:nth-child(2) {
	display: block;
}
.nav ul li:hover .img img:nth-child(1), .nav ul li.active .img img:nth-child(1) {
	display: none;
}
.main .top {
	height: 69px;
	background-color: #fff;
}
.main .top .title {
	font-size: 24px;
	color: #333333;
	height: 69px;
	line-height: 69px;
}
.main .top .portrait {
	height: 42px;
	margin-top: 10px;
}
.main .top .portrait .name {
	position: relative;
}
.main .top .portrait .name span {
	padding: 0px 5px;
	text-align: center;
	font-size: 16px;
	color: #333333;
	display: inline-block;
	height: 42px;
	line-height: 42px;
}
.main .top .portrait .name img {
	position: relative;
	top: -17px;
}
.main .top .portrait .name .out {
	font-size: 12px;
	color: #009c9d;
	position: absolute;
	bottom: -10px;
	right: 20px;
}
.main .top .portrait .img img {
	width: 42px;
	height: 42px;
}
.language {
	margin-top: 23px;
	margin-right: 41px;
}
.language a {
	font-size: 16px;
	color: #00b2b3;
}
.language img {
	margin-left: 10px;
	position: relative;
	top: -7px;
}
.phone {
	height: 69px;
	line-height: 69px;
	margin-right: 38px;
}
.phone a {
	font-size: 16px;
	color: #00b2b3;
}
.main .bot {
	background-color: #e8f1f1;
	height: auto!important;
	min-height: -webkit-calc(100vh - 69px); min-height: calc(100vh - 69px);
}
.main .bot .form {
	padding-top: 32px;
}
.main .bot .form .t-01 .item {
	margin-right: 11px;
	position: relative;
}
.main .bot .form .t-01 .item .i-01 {
	width: 200px;
	height: 40px;
	background-color: #caeaea;
	box-shadow: inset 2px 3px 5px 0px rgba(35, 19, 15, 0.07);
}
.main .bot .form .t-01 .item .i-01 .tex {
	line-height: 40px;
	height: 40px;
	border: 0;
	width: 162px;
	padding: 0 15px;
	font-size: 14px;
	color: #333333;
	background-color: #caeaea;
	box-shadow: inset 2px 3px 5px 0px rgba(35, 19, 15, 0.07);
}
.main .bot .form .t-01 .item .i-01 .arrow {
	cursor: pointer;
	width: 38px;
	text-align: center;
	line-height: 40px;
	background-color: #badada;
}
.main .bot .form .t-01 .item .i-01 .arrow img {
	vertical-align: middle;
}
.main .bot .form .t-01 .item dl {
	display: none;
	height: 387px;
	overflow-y: auto;
	padding: 8px 18px 8px;
	position: absolute;
	top: 40px;
	left: 0;
	width: 200px;
	background-color: #ffffff;
	box-shadow: 5px 7px 10px 0px rgba(35, 19, 15, 0.23);
	border: solid 1px #e5e5e5;
}
/*定义滚动条高宽及背景 高宽分别对应横竖滚动条的尺寸*/  

.main .bot .form .t-01 .item dl::-webkit-scrollbar {
 width: 3px;  /*滚动条宽度*/
 height: 3px  /*滚动条高度*/
}
  
/*定义滚动条轨道 内阴影+圆角*/  

.main .bot .form .t-01 .item dl::-webkit-scrollbar-track {
    /*滚动条的背景区域的内阴影*/
    box-shadow:0px 1px 3px rgba(0,0,0,0.3) inset;

    /*滚动条的背景区域的圆角*/
    border-radius: 10px;

    /*滚动条的背景颜色*/
    background-color: #ddd;
}
  
/*定义滑块 内阴影+圆角*/  

.main .bot .form .t-01 .item dl::-webkit-scrollbar-thumb {
    /*滚动条的内阴影*/
    box-shadow:0px 1px 3px rgba(0,0,0,0.3) inset;

    /*滚动条的圆角*/
    border-radius: 10px;

    /*滚动条的背景颜色*/
    background-color: #aaa;
}
.main .bot .form .t-01 .item dl dd {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	cursor: pointer;
	padding: 10px 0;
	font-size: 12px;
	color: #666666;
	border-bottom: 1px solid #eeeeee;
}
.main .bot .form .t-01 .item dl dd:last-child {
	border-bottom: 0px solid #000;
}
.main .bot .form .t-01 .item:hover dl {
	display: block;
}
.main .bot .form .t-02 {
	margin-top: 20px;
}
.main .bot .form .t-02 input {
	padding: 0 10px;
	font-size: 14px;
	color: #999999;
	width: 180px;
	height: 50px;
	background-color: #ffffff;
	border: solid 1px #dbe4e4;
}
.main .bot .form .t-02 button {
	margin-left: 10px;
	border: 0;
	cursor: pointer;
	font-size: 16px;
	color: #ffffff;
	width: 100px;
	height: 50px;
	background-color: #00b2b3;
}
.main .bot .form .t-02 input::-webkit-input-placeholder { /* WebKit browsers */
color:#999999;
}
.main .bot .form .t-02 input:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
color: #999999;
}
.main .bot .form .t-02 input::-moz-placeholder { /* Mozilla Firefox 19+ */
color: #999999;
}
.main .bot .form .t-02 input:-ms-input-placeholder { /* Internet Explorer 10+ */
color: #999999;
}
.main .bot .list {
	margin-top: 27px;
}
.main .bot .list .ul-01 li {
	border-right: 1px solid #e5e5e5;
	padding-left: 45px;
	float: left;
	color: #fff;
	background-color: #98aeae;
	height: 58px;
	line-height: 58px;
}
.main .bot .list .ul-01 li:last-child {
	border: 0;
}
.main .bot .list .ul-01 li:nth-child(1) {
	width: 166px;
}
.main .bot .list .ul-01 li:nth-child(2) {
	width: 118px;
}
.main .bot .list .ul-01 li:nth-child(3) {
	width: 363px;
}
.main .bot .list .ul-01 li:nth-child(4) {
	width: 233px;
}
.main .bot .list .ul-01 li:nth-child(5) {
	width: 299px;
}
.main .bot .list .ul-02 li dd {
	border-right: 1px solid #e5e5e5;
	float: left;
	height: 60px;
	padding-left: 45px;
	color: #333;
	line-height: 60px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
}
.main .bot .list .ul-02 li dd:last-child {
	border: 0;
}
.main .bot .list .ul-02 li dd:nth-child(1) {
	width: 166px;
}
.main .bot .list .ul-02 li dd:nth-child(2) {
	width: 118px;
}
.main .bot .list .ul-02 li dd:nth-child(3) {
	width: 363px;
}
.main .bot .list .ul-02 li dd:nth-child(4) {
	width: 233px;
}
.main .bot .list .ul-02 li dd:nth-child(5) {
	width: 299px;
}
.main .bot .list .ul-02 li:nth-child(odd) {
	background-color: #fff;
}
.main .bot .list .ul-02 li:nth-child(even) {
	background-color: #f4f4f4;
}
.page {
	font-size: 0;
	text-align: center;
	padding: 33px 0 56px;
}
.page a {
	margin: 0 2.5px;
	display: inline-block;
	width: 36px;
	color: #d0d0d0;
	font-size: 14px;
	text-align: center;
	line-height: 34px;
	height: 36px;
	background-color: #ffffff;
	border: solid 1px #b5b5b5;
}
.page a.w-77 {
	width: 77px;
	color: #adadad;
}
.page a.w-57 {
	width: 57px;
	color: #adadad;
}
.page a:hover, .page a.active {
	color: #fff;
	background-color: #00b2b3;
	border: 1px solid #00b2b3;
}
.page a.ellipsis {
	border: 0;
	background: none;
	color: #7d7d7d;
	width: 26px;
}
.m-organizational .bot .list .ul-01 li:nth-child(1) {
	width: 267px;
	padding-left: 50px;
}
.m-organizational .bot .list .ul-01 li:nth-child(2) {
	width: 516px;
	padding-left: 60px;
}
.m-organizational .bot .list .ul-01 li:nth-child(3) {
	width: 222px;
	padding-left: 70px;
}
.m-organizational .bot .list .ul-01 li:nth-child(4) {
	width: 174px;
	padding-left: 60px;
}
.m-organizational .bot .list .ul-02 li dd {
	border-right: 1px solid #e5e5e5;
	float: left;
	height: 60px;
	padding-left: 45px;
	color: #333;
	line-height: 60px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.m-organizational .bot .list .ul-02 li dd:last-child {
	border: 0;
}
.m-organizational .bot .list .ul-02 li dd:nth-child(1) {
	width: 267px;
	padding-left: 50px;
}
.m-organizational .bot .list .ul-02 li dd:nth-child(2) {
	width: 516px;
	padding-left: 60px;
}
.m-organizational .bot .list .ul-02 li dd:nth-child(3) {
	width: 222px;
	padding-left: 70px;
}
.m-organizational .bot .list .ul-02 li dd:nth-child(4) {
	width: 174px;
	padding-left: 60px;
}
.m-organizational .bot .list .ul-02 li dd:nth-child(4) a {
	color: #00b2b3;
}
.main .bot .form .t-02 input {
	margin-left: 9px;
}
.main .bot .form .t-02 input:nth-child(1) {
	margin-left: 0;
}
.m-management .bot .form .t-02 .date {
	width: 150px;
	background: #fff url('../images/sj-01.png') no-repeat 117px center;
}
.m-management .bot .form .t-03 {
	margin-top: 29px;
}
.m-management .bot .form .t-03 .link {
	font-size: 0;
}
.m-management .bot .form .t-03 .link a {
	margin-right: 10px;
	padding: 0 15px;
	font-size: 14px;
	color: #333;
	display: inline-block;
	border: 1px solid #c0cece;
	height: 35px;
	line-height: 33px;
	text-align: center;
}
.m-management .bot .form .t-03 .link a:hover, .m-management .bot .form .t-03 a.active {
	color: #fff;
	background-color: #00b2b3;
	border: 1px solid #00b2b3;
}
.m-management .bot .form .t-03 .export a {
	font-size: 16px;
	color: #333333;
	display: inline-block;
	padding-left: 27px;
	background: url('../images/dc-01.png') no-repeat left center;
}
.m-management .bot .form .t-03 .export {
	margin-top: 9px;
}
.m-management .bot .form .t-03 .export:hover a {
	color: #00b2b3;
}
.m-management .bot .list {
	padding-bottom: 47px;
}
.m-management .bot .list .ul-01 li {
	padding-left: 0;
	text-align: center;
}
.m-management .bot .list .ul-01 li:nth-child(1) {
	width: 120px;
	text-align: left;
	padding-left: 20px;
}
.m-management .bot .list .ul-01 li:nth-child(2) {
	width: 68px;
}
.m-management .bot .list .ul-01 li:nth-child(3) {
	width: 66px;
}
.m-management .bot .list .ul-01 li:nth-child(4) {
	width: 87px;
}
.m-management .bot .list .ul-01 li:nth-child(5) {
	width: 77px;
}
.m-management .bot .list .ul-01 li:nth-child(6) {
	width: 77px;
}
.m-management .bot .list .ul-01 li:nth-child(7) {
	width: 68px;
}
.m-management .bot .list .ul-01 li:nth-child(8) {
	width: 97px;
}
.m-management .bot .list .ul-01 li:nth-child(9) {
	width: 98px;
}
.m-management .bot .list .ul-01 li:nth-child(10) {
	width: 50px;
}
.m-management .bot .list .ul-01 li:nth-child(11) {
	width: 88px;
}
.m-management .bot .list .ul-01 li:nth-child(12) {
	width: 97px;
}
.m-management .bot .list .ul-01 li:nth-child(13) {
	width: 86px;
}
.m-management .bot .list .ul-01 li:nth-child(14) {
	width: 100px;
}
.m-management .bot .list .ul-02 li dd {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
	text-align: center;
	padding-top: 19px;
	border-right: 1px solid #e5e5e5;
	line-height: normal;
	padding-left: 0;
	float: left;
	height: 92px;
	color: #333;
}
.m-management .bot .list .ul-02 li dd:last-child {
	border: 0;
}
.m-management .bot .list .ul-02 li dd:nth-child(1) {
	width: 120px;
	text-align: left;
	padding-left: 10px;
}
.m-management .bot .list .ul-02 li dd:nth-child(2) {
	width: 68px;
}
.m-management .bot .list .ul-02 li dd:nth-child(3) {
	width: 66px;
}
.m-management .bot .list .ul-02 li dd:nth-child(4) {
	width: 87px;
}
.m-management .bot .list .ul-02 li dd:nth-child(5) {
	width: 77px;
}
.m-management .bot .list .ul-02 li dd:nth-child(6) {
	width: 77px;
}
.m-management .bot .list .ul-02 li dd:nth-child(7) {
	width: 68px;
}
.m-management .bot .list .ul-02 li dd:nth-child(8) {
	width: 97px;
}
.m-management .bot .list .ul-02 li dd:nth-child(9) {
	width: 98px;
}
.m-management .bot .list .ul-02 li dd:nth-child(10) {
	width: 50px;
}
.m-management .bot .list .ul-02 li dd:nth-child(10) a {
	color: #00b2b3;
}
.m-management .bot .list .ul-02 li dd:nth-child(11) {
	width: 88px;
}
.m-management .bot .list .ul-02 li dd:nth-child(12) {
	width: 97px;
}
.m-management .bot .list .ul-02 li dd:nth-child(13) {
	width: 86px;
}
.m-management .bot .list .ul-02 li dd:nth-child(14) {
	width: 100px;
	padding: 19px 10px 0;
}
.m-management .bot .list .ul-02 li dd:hover a {
	color: #00b2b3;
}
.m-delivery .bot .list {
	padding-bottom: 0;
}
.m-delivery .bot .list .ul-01 li {
	padding-left: 0;
	text-align: left;
}
.m-delivery .bot .list .ul-01 li:nth-child(1) {
	width: 127px;
	padding-left: 12px;
}
.m-delivery .bot .list .ul-01 li:nth-child(2) {
	width: 120px;
	padding-left: 10px;
}
.m-delivery .bot .list .ul-01 li:nth-child(3) {
	width: 95px;
	padding-left: 18px;
}
.m-delivery .bot .list .ul-01 li:nth-child(4) {
	width: 100px;
	padding-left: 20px;
}
.m-delivery .bot .list .ul-01 li:nth-child(5) {
	width: 114px;
	padding-left: 15px;
}
.m-delivery .bot .list .ul-01 li:nth-child(6) {
	width: 94px;
	padding-left: 22px;
}
.m-delivery .bot .list .ul-01 li:nth-child(7) {
	width: 124px;
	padding-left: 18px;
}
.m-delivery .bot .list .ul-01 li:nth-child(8) {
	width: 201px;
	padding-left: 21px;
}
.m-delivery .bot .list .ul-01 li:nth-child(9) {
	width: 204px;
	padding-left: 13px;
}
.m-delivery .bot .list .ul-02 li dd {
	text-align: left;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
	padding-top: 19px;
	border-right: 1px solid #e5e5e5;
	line-height: normal;
	padding-left: 0;
	float: left;
	height: 100px;
	color: #333;
}
.m-delivery .bot .list .ul-02 li dd:last-child {
	border: 0;
}
.m-delivery .bot .list .ul-02 li dd:nth-child(1) {
	width: 127px;
	padding-left: 12px;
}
.m-delivery .bot .list .ul-02 li dd:nth-child(2) {
	width: 120px;
	padding-left: 10px;
}
.m-delivery .bot .list .ul-02 li dd:nth-child(3) {
	width: 95px;
	padding-left: 18px;
}
.m-delivery .bot .list .ul-02 li dd:nth-child(4) {
	width: 100px;
	padding-left: 20px;
}
.m-delivery .bot .list .ul-02 li dd:nth-child(5) {
	width: 114px;
	padding-left: 15px;
}
.m-delivery .bot .list .ul-02 li dd:nth-child(6) {
	width: 94px;
	padding-left: 22px;
}
.m-delivery .bot .list .ul-02 li dd:nth-child(7) {
	width: 124px;
	padding-left: 18px;
}
.m-delivery .bot .list .ul-02 li dd:nth-child(8) {
	width: 201px;
	padding-left: 21px;
	padding-right: 22px;
}
.m-delivery .bot .list .ul-02 li dd:nth-child(9) {
	width: 204px;
	padding-left: 13px;
	padding-right: 30px;
}
.m-report .bot .texs {
	margin-top: 21px;
	background-color: #fff;
	min-height: 663px;
	margin-bottom: 47px;
}
.m-report .bot .texs .i-01 {
	text-align: center;
	padding: 52px 0 27px;
	font-size: 24px;
	color: #333333;
}
.m-report .bot .texs .con .ul-01 {
	width: 100%;
	background-color: #98aeae;
}
.m-report .bot .texs .con .ul-01 li {
	text-align: center;
	float: left;
	height: 58px;
	line-height: 58px;
	color: #fff;
}
.m-report .bot .texs .con .ul-01 li:nth-child(1) {
	width: 112px;
}
.m-report .bot .texs .con .ul-01 li:nth-child(2) {
	width: 78px;
}
.m-report .bot .texs .con .ul-01 li:nth-child(3) {
	width: 117px;
}
.m-report .bot .texs .con .ul-01 li:nth-child(4) {
	width: 78px;
}
.m-report .bot .texs .con .ul-01 li:nth-child(5) {
	width: 117px;
}
.m-report .bot .texs .con .ul-01 li:nth-child(6) {
	width: 78px;
}
.m-report .bot .texs .con .ul-01 li:nth-child(7) {
	width: 117px;
}
.m-report .bot .texs .con .ul-01 li:nth-child(8) {
	width: 78px;
}
.m-report .bot .texs .con .ul-01 li:nth-child(9) {
	width: 142px;
}
.m-report .bot .texs .con .ul-01 li:nth-child(10) {
	width: 117px;
}
.m-report .bot .texs .con .ul-01 li:nth-child(11) {
	width: 142px;
}
.m-report .bot .texs .con .ul-02 li dd {
	border-bottom: 1px solid #e5e5e5;
	height: 72px;
	line-height: 72px;
	text-align: center;
	float: left;
	color: #333;
}
.m-report .bot .texs .con .ul-02 li dd:nth-child(1) {
	width: 112px;
}
.m-report .bot .texs .con .ul-02 li dd:nth-child(2) {
	width: 78px;
}
.m-report .bot .texs .con .ul-02 li dd:nth-child(3) {
	width: 117px;
}
.m-report .bot .texs .con .ul-02 li dd:nth-child(4) {
	width: 78px;
}
.m-report .bot .texs .con .ul-02 li dd:nth-child(5) {
	width: 117px;
}
.m-report .bot .texs .con .ul-02 li dd:nth-child(6) {
	width: 78px;
}
.m-report .bot .texs .con .ul-02 li dd:nth-child(7) {
	width: 117px;
}
.m-report .bot .texs .con .ul-02 li dd:nth-child(8) {
	width: 78px;
}
.m-report .bot .texs .con .ul-02 li dd:nth-child(9) {
	width: 142px;
}
.m-report .bot .texs .con .ul-02 li dd:nth-child(10) {
	width: 117px;
}
.m-report .bot .texs .con .ul-02 li dd:nth-child(11) {
	width: 142px;
}
.total {
	text-align: center;
	font-size: 18px;
	color: #333333;
	margin-top: 30px;
}
.total span {
	margin: 0 20px;
}
.m-account .bot .t-01 {
	padding: 29px 0 16px;
	font-size: 24px;
	color: #333333;
}
.m-account .bot .t-02 {
	padding: 50px;
	height: 720px;
	background-color: #ffffff;
	border-radius: 4px;
}
.m-account .bot .t-02 .i-01 {
	width: 80px;
	text-align: center;
	color: #333;
}
.m-account .bot .t-02 .i-01 p {
	margin-top: 17px;
}
.m-account .bot .t-02 .i-02 {
	margin-left: 100px;
}
.m-account .bot .t-02 .i-02 .item {
	color: #999;
	font-size: 16px;
	margin-top: 38px;
}
.m-account .bot .t-02 .i-02 .item:nth-child(1) {
	margin-top: 0;
}
.m-account .bot .t-02 .i-02 .item span {
	display: inline-block;
	width: 80px;
	text-align: right;
}
.m-account .bot .t-02 .i-02 .item p {
	margin-left: 10px;
}
.m-account .bot .t-02 .i-02 .item input {
	font-size: 16px;
	color: #999;
	padding: 0 9px;
	width: 378px;
	height: 45px;
	background-color: #ffffff;
	border: solid 1px #dcdcdc;
}
.m-account .bot .t-02 .i-02 .item.on span {
	padding-top: 9px;
}
.m-account .bot .t-02 .i-02 .item.on i {
	cursor: pointer;
	font-style: normal;
	display: inline-block;
	height: 45px;
	line-height: 45px;
	margin-left: 13px;
	font-size: 16px;
	color: #00b2b3;
}
.m-account .bot .t-02 .i-02 .btn button {
	cursor: pointer;
	border: 0;
	font-size: 16px;
	color: #ffffff;
	width: 150px;
	height: 40px;
	background-color: #00b2b3;
	border-radius: 4px;
}
.m-account .bot .t-02 .i-02 .btn {
	margin-top: 30px;
	padding-left: 90px;
	cursor: pointer;
}
.m-account .bot .t-02 .i-02 .item input::-webkit-input-placeholder { /* WebKit browsers */
color:#d0d0d0;
}
.m-account .bot .t-02 .i-02 .item input:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
color: #d0d0d0;
}
.m-account .bot .t-02 .i-02 .item input::-moz-placeholder { /* Mozilla Firefox 19+ */
color: #d0d0d0;
}
.m-account .bot .t-02 .i-02 .item input:-ms-input-placeholder { /* Internet Explorer 10+ */
color: #d0d0d0;
}
.popup {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.5);
	z-index: 100;
}
.popup .con {
	font-size: 18px;
	color: #333333;
	text-align: center;
	line-height: 169px;
	position: absolute;
	z-index: 101;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 402px;
	height: 169px;
	background-color: #ffffff;
	box-shadow: 0px 10px 57px 0px rgba(35, 19, 15, 0.24);
	border-radius: 20px;
}
.popup .con img {
	position: absolute;
	top: 18px;
	right: 19px;
	cursor: pointer;
}
.sign-in {
	position: relative;
}
.sign-in .con {
	padding: 0 54px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 462px;
	height: 502px;
	background-color: #ffffff;
	box-shadow: 0px 10px 57px 0px rgba(35, 19, 15, 0.24);
	border-radius: 20px;
}
.sign-in .con .t-01 {
	text-align: center;
	margin-top: -65px;
}
.sign-in .con .tab {
	text-align: center;
	font-size: 0;
	margin-top: 35px;
}
.sign-in .con .tab a {
	display: inline-block;
	padding-bottom: 13px;
	border-bottom: 2px solid #fff;
	color: #bfbfbf;
	font-size: 24px;
	letter-spacing: 2px;
	margin: 0 13px;
}
.sign-in .con .tab a:hover, .sign-in .con .tab a.active {
	color: #333333;
	border-bottom: 2px solid #00b2b3;
}
.sign-in .con .t-02 .item .items input {
	padding: 0 30px 0 58px;
	border: 0;
	color: #333;
	font-size: 16px;
	width: 355px;
	height: 50px;
	background-color: #eeeeee;
	border-radius: 8px;
}
.sign-in .con .t-02 {
	margin-top: 40px;
}
.sign-in .con .t-02 .item .items:nth-child(1) input {
	background: #eeeeee url('../images/dl-01.png') no-repeat 27px center;
}
.sign-in .con .t-02 .item .items:nth-child(2) input {
	background: #eeeeee url('../images/dl-02.png') no-repeat 27px center;
}
.sign-in .con .t-02 .item .items:nth-child(2) {
	margin: 20px 0;
}
.sign-in .con .t-02 .it .remember {
	font-size: 16px;
	color: #333333;
	margin-left: 27px;
}
.sign-in .con .t-02 .it .remember:hover {
	color: #00b2b3;
	cursor: pointer;
}
.sign-in .con .t-02 .it .forget {
	margin-right: 29px;
	font-size: 16px;
	color: #333333;
}
.sign-in .con .t-02 .it .forget:hover {
	color: #00b2b3;
	cursor: pointer;
}
.sign-in .con .t-02 .it input[type=checkbox] {
	margin-right: 16px;
	width: 16px;
	height: 16px;
	background-color: #e5e5e5 !important;
	border-radius: 4px;
}
.sign-in .con .t-02 .btn {
	margin-top: 20px;
}
.sign-in .con .t-02 .btn button {
	cursor: pointer;
	border: 0;
	font-size: 16px;
	color: #ffffff;
	width: 355px;
	height: 50px;
	background-color: #009c9d;
	border-radius: 8px;
}
.sign-in .con .t-02 .item .items input::-webkit-input-placeholder { /* WebKit browsers */
color:#a2a2a2;
}
.sign-in .con .t-02 .item .items input:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
color: #a2a2a2;
}
.sign-in .con .t-02 .item .items input::-moz-placeholder { /* Mozilla Firefox 19+ */
color: #a2a2a2;
}
.sign-in .con .t-02 .item .items input:-ms-input-placeholder { /* Internet Explorer 10+ */
color: #a2a2a2;
}

@media (min-width:1365px) and (max-width:1439px) {
.main .top .portrait {
	margin-right: 20px;
}
.sign-in .con {
	height: 480px;
}
.sign-in {
	background-size: 100% auto !important;
}
}
/*病例弹窗*/
.popup-case {
	background-color: rgba(0,0,0,0.5);
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	position: fixed;
	z-index: 999;
	display: none;
}
.popup-case .popup-wrap {
	width: 800px;
	height: 430px;
	background-color: #fff;
	left: 50%;
	top: 50%;
	margin-left: -400px;
	margin-top: -215px;
	position: absolute;
}
.popup-case .popup-head {
	height: 60px;
	line-height: 60px;
	background-color: #00b2b3;
	padding: 0 30px;
	color: #fff;
	font-size: 18px;
}
.popup-case .popup-head i {
	font-size: 35px;
	font-style: normal;
	float: right;
	cursor: pointer;
}
.popup-case .popup-body strong {
	padding-left: 50px;
	font-size: 18px;
	font-weight: normal;
	line-height: 60px;
	margin-top: 15px;
	margin-bottom: 15px;
	display: block;
}
.popup-case .popup-body strong em {
	color: #00b2b3;
	font-style: normal;
}
.popup-case .popup-body li {
	padding-left: 50px;
	padding-right: 50px;
	display: inline-block;
	width: 100%;
	line-height: 60px;
	font-size: 16px;
}
.popup-case .popup-body li:nth-child(odd) {
	background-color: #f4f4f4;
}
.popup-case .popup-body li div {
	float: left;
}
.popup-case .popup-body li div:nth-child(1) {
	width: 40%;
}
.popup-case .popup-body li div:nth-child(2) {
	width: 60%;
}
.popup-case .popup-body li div span {
	color: #999999;
}
/* 新增 */
.main .bot.cont6 .form .t-02 {
	margin-top: 0;
}
.cont6 .t-01 {
	display: inline-block;
	float: left;
}
.main .bot.cont6 .form .t-01 .item .i-01 .tex {
	background-color: #fff;
	border-radius: 4px 0 0 4px;
	box-shadow: none;
	height: 35px;
	line-height: 35px;
	width: 95px;
	padding: 0 0 0 15px;
}
.main .bot.cont6 .form .t-01 .item .i-01 .arrow {
	background-color: #fff;
	border-radius: 0 4px 4px 0;
	height: 35px;
	line-height: 35px;
	width: 25px;
}
.main .bot.cont6 .form .t-01 .item .i-01 {
	box-shadow: none;
	background: none;
	width: 120px;
	position: relative;
}
.m-management .bot.cont6 .form .t-02 .date {
	width: 120px;
	background: #fff url(../images/2_03.png) no-repeat 100px center;
	margin-left: 15px;
}
.main .bot.cont6 .form .t-02 input {
	border: none;
	border-radius: 4px;
	height: 35px;
	color: #333;
	font-size: 14px;
}
.main .bot.cont6 .form .t-02 input {
	padding: 0 14px;
	margin-left: 20px;
}
.main .bot.cont6 .form .t-01 .item .i-01 .tex {
	margin-left: 0;
}
.main .bot.cont6 .form .t-01 .item {
	margin-right: 0;
}
.main .bot.cont6 .form .t-02 .xian {
	width: 10px;
	height: 1px;
	background-color: #959595;
	display: inline-block;
	float: left;
	margin-left: 5px;
	position: relative;
	top: 18px;
}
.main .bot.cont6 .form .t-02 input#endTime {
	margin-left: 5px;
}
.main .bot.cont6 .form .t-02 button {
	background: none;
	height: 35px;
	width: auto;
	margin-left: 20px;
}
.cont6 .font16 {
	color: #000000;
	line-height: 30px;
	font-size: 16px;
	margin: 12px 0;
}
.cont6 .font16 span {
	color: #ee4747;
}
.cont6_cont li {
	overflow: hidden;
	background-color: #ffffff;
	border: solid 1px #e5e5e5;
	height: 220px;
	margin-bottom: 30px;
}
.cont6_cont li .lt {
	width: 787px;
	float: left;
	padding: 20px;
	overflow: hidden;
	height: 100%;
}
.cont6_cont li .lt .imgs {
	display: inline-block;
	float: left;
}
.cont6_cont li .ct {
	width: 160px;
	float: left;
	height: 100%;
	border-left: solid 1px #e5e5e5;
	text-align: center;
	padding: 35px 10px;
	font-size: 14px;
}
.cont6_cont li .rt {
	width: 150px;
	float: left;
	height: 100%;
	background-color: #eeeeee;
	text-align: center;
	border-left: solid 1px #e5e5e5;
}
.cont6_cont li .lt .nrt {
	display: inline-block;
	margin-left: 35px;
	float: left;
}
.cont6_cont li .lt .nrt .bod {
	color: #333333;
	margin-bottom: 25px;
	font-size: 16px;
	font-weight: bold;
}
.cont6_cont li .lt .nrt .bod2 {
	color: #333;
	font-size: 14px;
}
.cont6_cont li .lt .nrt span:last-child {
	margin-left: 30px;
}
.cont6_cont li .lt .nrt span b {
	color: #999;
}
.cont6_cont li .ct span {
	display: block;
}
.cont6_cont li .ct span:first-child {
	color: #999999;
	margin-bottom: 36px;
}
.cont6_cont li .ct .se1 {
	color: #fb7b38;
	font-weight: bold;
}
.cont6_cont li .ct .se2 {
	color: #7db92f;
	font-weight: bold;
}
.cont6_cont li .rt a {
	display: block;
	height: 100%;
}
.cont6_cont li .rt .table {
	display: table;
	height: 100%;
}
.cont6_cont li .rt .table_cell {
	display: table-cell;
	vertical-align: middle;
	height: 100%;
}
.cont6_cont li .rt .table_cell span {
	display: block;
	color: #333333;
	font-size: 14px;
	margin-top: 14px;
}
.cont6_cont {
	background-color: #fff;
	padding: 40px;
}
.hoverS .out {
	display: none;
}
.hoverS:hover .out {
	display: block;
}
.qbox9 {
	width: 100%;
	margin-top: 20px;
}
.qbox9 a {
	font-size: 14px;
	color: #333;
	width: 198px;
	height: 38px;
	line-height: 38px;
	text-align: center;
	background-color: #eee;
	border: 1px solid #dbdbdb;
	border-radius: 5px;
	display: inline-block;
}
.qbox9 a img {
	height: 17px;
	margin-right: 6px;
	position: relative;
	vertical-align: middle;
}
.qbox9 a:hover {
	text-decoration: underline;
}
.qbox11 {
	width: 1040px;
	min-height: 530px;
	margin-top: 20px;
	padding: 30px;
	background-color: #fff;
	border-radius: 5px;
}
.qbox11 ul {
	width: 1040px;
}
.qbox11 ul li {
	font-size: 16px;
	width: 1040px;
	line-height: 45px;
	margin-top: 20px;
}
.qbox11 ul li:first-child {
	margin-top: 28px;
}
.qbox11 ul li p {
	color: #999;
	width: 170px;
	text-align: right;
	padding-right: 10px;
}
.qbox11 ul li span {
	color: #333;
	width: 860px;
	display: block;
}
.qbox11 ul li span .wbk1 {
	color: #333;
	width: 289px;
	height: 43px;
	line-height: 43px;
	padding: 0 18px;
	background: none;
	border: 1px solid #dcdcdc;
}
.qbox11 ul li span .wbk2 {
	color: #333;
	width: 101px;
	height: 35px;
	line-height: 35px;
	text-align: left;
	margin: 5px 12px 0 0;
	padding: 0 0 0 14px;
	background: #f1f1f1;
	border: 1px solid #dcdcdc;
}
.qbox11 ul li span .btn1 {
	color: #fff;
	width: 170px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	background: #00b2b3;
	border: 0px;
	border-radius: 5px;
}
 .qbox11 ul li span ::-webkit-input-placeholder {
					/* WebKit browsers */
					color: #d0d0d0;
}
 .qbox11 ul li span :-moz-placeholder {
					/* Mozilla Firefox 4 to 18 */
					color: #d0d0d0;
}
 .qbox11 ul li span ::-moz-placeholder {
					/* Mozilla Firefox 19+ */
					color: #d0d0d0;
}
 .qbox11 ul li span :-ms-input-placeholder {
					/* Internet Explorer 10+ */
					color: #d0d0d0;
}
