@charset "utf-8";

/* z-index: 2; */
/* CSS Document */

*{
	margin: 0;
	padding: 0;
}

body{
	font: 12px/1.5 Arial, Microsoft Yahei, -apple-system, BlinkMacSystemFont, Helvetica Neue, PingFang SC, Source Han Sans SC, Noto Sans CJK SC, WenQuanYi Micro Hei, sans-serif;
	font-weight: normal;
	letter-spacing: 0.4px;
	color: #000;
	-webkit-font-smoothing: antialiased;
	width: 100%;
	height: 100%;
	min-width: 1200px !important;
}

h1{
	margin: 0;
}

p{
	margin: 0;
}

a{
	color: blue;
	text-decoration: none;
	cursor: pointer;
	outline: 0 none;
}

a:hover{
	text-decoration: none;
}

a:focus{
	-moz-outline-style: none;
	border: 0px;
	blr: expression(this.onFocus=this.blur());
}

input:focus{
	outline: none;
}

body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,p,blockquote,th,td{
	margin: 0;
	padding: 0;
}

header,footer,article,aside,section,nav,menu,hgroup,details,dialog,figure,figcaption{
	display: block;
}

ol,li,ul,dl,dt,dd{
	list-style: none;
}

fieldset,img{
	border: 0;
}

button,submit,input,select{
	vertical-align: middle;
}

button,submit{
	cursor: pointer;
}

h1,h2,h3,h4,h5,h6{
	font-size: inherit;
	font-weight: normal;
}

b,em,i{
	display: inline-block;
	font-weight: normal;
	font-style: normal;
}

.fl{
	float: left;
}

.fr{
	float: right;
}

.clearfix:after{
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

.clearfix{
	zoom: 1;
}

.po{
	overflow: hidden !important;
}

.sr-bdimgshare,
.sr-bdimgshare-list,
.sr-bdimgshare-16,
.sr-bdimgshare-black{
	display: none !important;
}

/* number-------------------------------------------------------------------------------------------- */

.FML04{
	margin-left: -4px;
}

.FMT10{
	margin-top: -10px !important;
}

.FMT14{
	margin-top: -14px !important;
}

.MT08{
	margin-top: 8px !important;
}

.MT20{
	margin-top: 20px !important;
}

.MT30{
	margin-top: 30px !important;
}

.MT36{
	margin-top: 36px !important;
}

.MT76{
	margin-top: 76px !important;
}

.MT120{
	margin-top: 120px !important;
}

.MB00{
	margin-bottom: 0px !important;
}

.MB10{
	margin-bottom: 10px !important;
}

.MB20{
	margin-bottom: 20px !important;
}

.MB32{
	margin-bottom: 32px !important;
}

.FMB14{
	margin-bottom: -14px !important;
}

/* newscrollbar-------------------------------------------------------------------------------------------- */

.newscrollbar{
  scrollbar-color: #e0e0e0 #ffffff;
  scrollbar-width: thin;
}

.newscrollbar::-webkit-scrollbar{
    width: 8px;
    height: 8px;
    background: none;
}

.newscrollbar::-webkit-scrollbar-thumb{
    display: block;
    min-width: 8px;
    min-height: 8px;
    background: #e0e0e0;
    border: 3px solid #ffffff;
    border-radius: 6px;
}

.newscrollbar::-webkit-scrollbar-thumb:track{
	background: none;
}

.newscrollbar::-webkit-scrollbar-thumb:hover{
    border: 2px solid #ffffff;
    -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
}

/* topTip-------------------------------------------------------------------------------------------- */

.topTip{
	width: 100%;
	position: fixed;
	left: 0;
	z-index: 99999;
	background: #808080;
	opacity: 0.5;
	filter: alpha(opacity=50);
	top: 0;
	text-align: center;
	color: #fff;
	font-size: 22px;
	line-height: 54px;
}

/* animation-------------------------------------------------------------------------------------------- */

/*fain-in-----*/

@keyframes fain-in{  
    0%{
    	opacity: 0;
    }

    100%{
    	opacity: 1;
    }
} 

@-webkit-keyframes fain-in{
    0%{
    	opacity: 0;
    }

    100%{
    	opacity: 1;
    }
}

/*adv-----*/

@keyframes adv{
	0%{transform:rotate(0)}
	10%{transform:rotate(-15deg)}
	20%{transform:rotate(15deg)}
	30%{transform:rotate(-15deg)}
	40%{transform:rotate(15deg)}
	50%{transform:rotate(0)}
	100%{transform:rotate(0)}
}

@-webkit-keyframes adv{
	0%{transform:rotate(0)}
	10%{transform:rotate(-15deg)}
	20%{transform:rotate(15deg)}
	30%{transform:rotate(-15deg)}
	40%{transform:rotate(15deg)}
	50%{transform:rotate(0)}
	100%{transform:rotate(0)}
}

/*hide-----*/

@-webkit-keyframes hide{
	0%{
		opacity: 1;
		-webkit-transform: translateY(0);
	}

	25%{
		opacity: .5;
		-webkit-transform: rotate(-5deg) translateY(-0.625rem);
	}

	75%{
		-webkit-transform: rotate(5deg);
	}

	100%{
		opacity: 0;
		-webkit-transform: translateY(6.25rem);
	}
}

@keyframes hide{
	0%{
		opacity: 1;
		transform: translateY(0);
	}

	25%{
		opacity: .5;
		transform: rotate(-5deg) translateY(-0.625rem);
	}

	75%{
		transform: rotate(5deg);
	}

	100%{
		opacity: 0;
		transform: translateY(6.25rem);
	}
}

/*show-----*/

@-webkit-keyframes show{
	0%{
		transform: rotate(0deg);
	}

	25%{
		opacity: .5;
		transform: rotate(-5deg) translateY(-0.625rem);
	}

	75%{
		transform: rotate(5deg);
	}

	100%{
		opacity: 1;
		transform: rotate(0deg);
	}
}

@keyframes show{
	0%{
		transform: rotate(0deg);
	}

	25%{
		opacity: .5;
		transform: rotate(-5deg) translateY(-0.625rem);
	}

	75%{
		transform: rotate(5deg);
	}

	100%{
		opacity: 1;
		transform: rotate(0deg);
	}
}

/*chang-----*/

@-webkit-keyframes chang{
	0%{
		transform: translateX(-400px);
	}

	100%{
		transform: translateX(0);
	}
}

@keyframes chang{
	0%{
		transform: translateX(-400px);
	}

	100%{
		transform: translateX(0);
	}
}

/*shang-----*/

@-webkit-keyframes shang{
	0%{
		transform: translateY(-12px);
	}

	100%{
		transform: translateY(0);
	}
}

@keyframes shang{
	0%{
		transform: translateY(-12px);
	}

	100%{
		transform: translateY(0);
	}
}

/*shangtan-----*/

@-webkit-keyframes shangtan{
	0%{
		transform: translateY(-40px);
		opacity: 0;
	}

	25%{
		transform: translateY(-10px);
		opacity: 0.4;
	}

	50%{
		transform: translateY(0);
		opacity: 0.8;
	}

	100%{
		transform: translateY(0);
		opacity: 1;
	}
}

@keyframes shangtan{
	0%{
		transform: translateY(-40px);
		opacity: 0;
	}

	25%{
		transform: translateY(-10px);
		opacity: 0.5;
	}

	50%{
		transform: translateY(0);
		opacity: 0.8;
	}

	100%{
		transform: translateY(0);
		opacity: 1;
	}
}

/*service_hexagon-----*/

@-webkit-keyframes service_hexagon{
	0%{
		transform: rotate(0deg);
	}
	
	100%{
		transform: rotate(1turn);
	}
}

@keyframes service_hexagon{
	0%{
		transform: rotate(0deg);
	}
	
	100%{
		transform: rotate(1turn);
	}
}

/* main-box-------------------------------------------------------------------------------------------- */

.main-box{ 
	width: 100%;
	height: auto;
}

.main-box .main{
	width: 1200px;
	height: auto;
	margin: 0 auto;
}

.main-box .main .main-fl{
	float: left;
	width: 858px;
	height: auto;
}

.main-box .main .main-fr{
	float: right;
	width: 306px;
	height: auto;
}

/* company-tips-------------------------------------------------------------------------------------- */

.company-tips{
	padding: 28px 32px 24px 32px;
	width: 794px;
	border-radius: 20px;
	margin-bottom: 20px;
}

.company-tips em{
	font-size: 13px;
	line-height: 13px;
	color: #222234;
}

.company-tips em:before{
	content: "";
    display: inline-block;
    vertical-align: middle;
    clear: both;
    width: 6px;
    height: 16px;
    border-radius: 6px;
    background: #f01414;
    position: absolute;
    top: 28px;
    left: -2px;
    transform: rotate(8deg);
    -ms-transform: rotate(8deg);
    -moz-transform: rotate(8deg);
    -webkit-transform: rotate(8deg);
    -o-transform: rotate(8deg);
}

.company-tips p{
	font-size: 13px;
	line-height: 21px;
	color: #666666;
	margin-top: 8px;
}

.company-tips p:before{
	content: "";
    display: inline-block;
    vertical-align: middle;
    clear: both;
    width: 4px;
    height: 4px;
    border-radius: 2px;
    background: #808080;
    position: relative;
    top: -1px;
    margin-right: 4px;
}

/* company-crumbs-------------------------------------------------------------------------------------------- */

.company-crumbs{
	padding: 15px 30px;
}

.company-crumbs ul{
	display: flex;
	flex-wrap: wrap;
}

.company-crumbs ul li a{
	font-size: 14px;
	line-height: 22px;
	color: #7a7a85;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

.company-crumbs ul li a:before{
	content: ">";
	display: inline-block;
	vertical-align: middle;
	clear: both;
	color: #7a7a85;
	position: relative;
	top: -1px;
	margin: 0 8px;
}

.company-crumbs ul li a:hover{
	color: #222234;
}

.company-crumbs ul li:nth-of-type(1) a:before{
	display: none;
}

/* footer-box-------------------------------------------------------------------------------------------- */

.footer-box{
	width: 100%;
	height: auto;
	background: #ffffff;
}

.footer-t{
	width: 100%;
	height: auto;
	background: url(../../images/2020/common/bg_footer.png) #ffffff no-repeat center bottom;
}


.footer-hot{
	padding: 0 50px 34px 30px;
	width: 1120px;
	height: auto;
	margin: 0 auto;
	border-bottom: 1px solid #eaeaea;
	display: flex;
	justify-content: space-between;
}

.footer-hot dl{
	width: 30%;
	height: auto;
}

.footer-hot dl dt{
	padding: 16px 0;
	font-size: 14px;
	line-height: 14px;
	color: #222234;
	font-weight: 900;
}

.footer-hot dl dd{
	float: left;
	margin: 6px 16px 6px 0;
}

.footer-hot dl dd a{
	float: left;
	font-size: 14px;
	line-height: 14px;
	color: #959595;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

.footer-hot dl dd a:hover{
	color: #4262de;
}

.footer-adv{
	padding: 60px 0 48px 0;
	width: 1200px;
	height: auto;
	margin: 0 auto;
}

.footer-adv strong{
	display: block;
	font-size: 24px;
	line-height: 24px;
	color: #222234;
	font-weight: 400;
	text-align: center;
}

.footer-adv ul{
	padding: 0 40px;
	width: 1120px;
	height: auto;
	display: flex;
	justify-content: space-between;
	margin-top: 34px;
}

.footer-adv ul li{
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.footer-adv ul li i{
	display: inline-block;
	width: 64px;
	height: 64px;
	background: url(../../images/2020/common/icon_adv.png) no-repeat;
	-moz-background-size: 262px 64px;
	-webkit-background-size: 262px 64px;
	background-size: 262px 64px;
	margin-right: 12px;
	transform-origin: center;
    transform: rotate(0);
    animation: adv 2s;
    -webkit-animation: adv 2s infinite;
}

.footer-adv ul li:nth-of-type(1) i{
	background-position: 0 0;
}

.footer-adv ul li:nth-of-type(2) i{
	background-position: -66px 0;
}

.footer-adv ul li:nth-of-type(3) i{
	background-position: -132px 0;
}

.footer-adv ul li:nth-of-type(4) i{
	background-position: -198px 0;
}

.footer-adv ul li p em{
	display: block;
	font-size: 28px;
	line-height: 28px;
	color: #444644;
}

.footer-adv ul li p span{
	display: block;
	font-size: 14px;
	line-height: 14px;
	color: #444644;
	margin-top: 6px;
}

/* -------------------------------------------------------------------------------------------- */

.footer-b{
	width: 100%;
	height: auto;
	background: #202020;
}

.footer-main{
	padding: 60px 0 30px 0;
	width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.footer-main-a{
	width: 748px;
}

.footer-main-a img{
	display: inline-block;
	width: 120px;
	height: 30px;
}

.footer-main-a em{
	display: inline-block;
	font-size: 12px;
	line-height: 20px;
	color: #60606d;
	text-align: justify;
	margin: 22px 0 18px 0;
}

.footer-main-a dl{
	margin: 27px 0 25px 0;
}

.footer-main-a dl dt{
	display: flex;
	align-items: center;
}

.footer-main-a dl dt i{
	display: inline-block;
	width: 20px;
	height: 14px;
	background: url(../../images/2020/common/icon_email.png) no-repeat;
	-moz-background-size: 20px 14px;
	-webkit-background-size: 20px 14px;
	background-size: 20px 14px;
	margin: 0 10px 0 4px;
}

.footer-main-a dl dt em{
	font-size: 12px;
	line-height: 14px;
	color: #737384;
	margin: 0;
}

.footer-main-a dl dd{
	display: flex;
	align-items: center;
	margin-top: 14px;
}

.footer-main-a dl dd a{
	padding: 4px 14px 4px 10px;
	display: flex;
	align-items: center;
	border-radius: 8px;
	background-color: rgba(96,96,109,0.4);
	margin-right: 10px;
	-webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.footer-main-a dl dd a:hover{
	border-radius: 12px;
	background-color: rgba(255,255,255,0.94);
}

.footer-main-a dl dd a img{
	display: inline-block;
	width: 14px;
	height: 17px;
	margin-right: 4px;
}

.footer-main-a dl dd a em{
	font-size: 12px;
	line-height: 14px;
	color: #737384;
	margin: 1px 0 0 0;
}

.footer-main-a dl dd a:hover em{
	color: #202020;
}

.footer-main-a p{
	font-size: 12px;
	line-height: 20px;
	color: #60606d;
	margin-top: 6px;
}

.footer-main-a p a{
	color: #60606d;
	margin-right: 10px;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

.footer-main-a p a:hover{
	color: #bbbbbb;
}

.footer-main-b{
	padding: 0 60px;
	width: 190px;
}

.footer-main-b dl{
	width: 100%;
}

.footer-main-b dl dt{
	font-size: 12px;
	line-height: 20px;
	color: #60606d;
	margin-top: 6px;
	text-align: justify;
}

.footer-main-b dl dt a{
	color: #60606d;
	margin-right: 8px;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

.footer-main-b dl dt a:hover{
	color: #ffffff;
}

.footer-main-c .qr-code{
	display: inline-block;
	width: 144px;
	height: 144px;
	border-radius: 4px;
	margin-top: 6px;
	overflow: hidden;
}

.footer-main-c .qr-code img{
	width: 100%;
	min-height: 100%;
}

.footer-main-c p{
	font-size: 12px;
	line-height: 20px;
	color: #60606d;
	text-align: center;
	margin-top: 6px;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

.footer-main-c:hover > p{
	color: #cccccc;
}

/* box-------------------------------------------------------------------------------------------- */

.box,
.boxs{
	position: relative;
	background: #ffffff;
	box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.1);
	-webkit-box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.1);
}

.box .header{
	width: 100%;
	height: auto;
}

/* -------------------------------------------------------------------------------------------- */

.box .header .header-a{
	padding: 34px 32px 20px 32px;
}

.box .header .header-a p{
	font-size: 26px;
	line-height: 36px;
	color: #222234;
	position: relative;
}

.box .header .header-a p:before{
	content: "";
    display: inline-block;
    vertical-align: middle;
    clear: both;
    width: 6px;
    height: 16px;
    border-radius: 6px;
    background: #f01414;
    position: absolute;
    top: 11px;
    left: -34px;
    transform: rotate(8deg);
    -ms-transform: rotate(8deg);
    -moz-transform: rotate(8deg);
    -webkit-transform: rotate(8deg);
    -o-transform: rotate(8deg);
}

/* -------------------------------------------------------------------------------------------- */

.box .header .header-b{
	padding: 34px 32px 0 32px;
	width: 794px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
}

.box .header .header-b p{
	max-width: 680px;
	font-size: 26px;
	line-height: 36px;
	color: #222234;
	position: relative;
}

.box .header .header-b p:before{
	content: "";
    display: inline-block;
    vertical-align: middle;
    clear: both;
    width: 6px;
    height: 16px;
    border-radius: 6px;
    background: #f01414;
    position: absolute;
    top: 11px;
    left: -34px;
    transform: rotate(8deg);
    -ms-transform: rotate(8deg);
    -moz-transform: rotate(8deg);
    -webkit-transform: rotate(8deg);
    -o-transform: rotate(8deg);
}

.box .header .header-b a.text{
	font-size: 12px;
	line-height: 12px;
	color: #aaaaaa;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

.box .header .header-b a.text:hover{
	color: #666666;
}

.box .header .header-b a.button{
	padding: 10px 24px;
	font-size: 14px;
	line-height: 14px;
	color: #556677;
	border: 2px solid #ebebeb;
	border-radius: 16px;
	background: #ffffff;
	outline: none;
	box-shadow: 0px 7px 8px rgba(0, 0, 0, 0.06);
	-moz-box-shadow: 0px 7px 8px rgba(0, 0, 0, 0.06);
	-webkit-box-shadow: 0px 7px 8px rgba(0, 0, 0, 0.06);
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

.box .header .header-b a.button:hover{
	box-shadow: 0px -1px 8px rgba(0, 0, 0, 0.08);
	-moz-box-shadow: 0px -1px 8px rgba(0, 0, 0, 0.08);
	-webkit-box-shadow: 0px -1px 8px rgba(0, 0, 0, 0.08);
}

.box .header .header-b button{
	padding: 10px 24px;
	font-size: 14px;
	line-height: 14px;
	color: #556677;
	border: 2px solid #ebebeb;
	border-radius: 16px;
	background: #ffffff;
	outline: none;
	box-shadow: 0px 8px 8px rgba(0, 0, 0, 0.06);
	-moz-box-shadow: 0px 8px 8px rgba(0, 0, 0, 0.06);
	-webkit-box-shadow: 0px 8px 8px rgba(0, 0, 0, 0.06);
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

.box .header .header-b button:hover{
	box-shadow: 0px -1px 8px rgba(0, 0, 0, 0.08);
	-moz-box-shadow: 0px -1px 8px rgba(0, 0, 0, 0.08);
	-webkit-box-shadow: 0px -1px 8px rgba(0, 0, 0, 0.08);
}

.box .header .header-b a.taxlink{
	display: block;
	width: 204px;
	height: 63px;
	background: url(../../images/2020/common/icon_taxlink.png) no-repeat;
	-moz-background-size: 204px 63px;
	-webkit-background-size: 204px 63px;
	background-size: 204px 63px;
	text-align: center;
	font-size: 14px;
	line-height: 62px;
	color: #ffffff;
	letter-spacing: 1px;
	text-indent: 7px;
	font-weight: 900;
	font-style: oblique;
	transform: rotate(-0.04deg);
    -ms-transform: rotate(-0.04deg);
    -moz-transform: rotate(-0.04deg);
    -webkit-transform: rotate(0.04deg);
    -o-transform: rotate(-0.04deg);
    position: absolute;
    top: 16px;
    right: 32px;

}

/* -------------------------------------------------------------------------------------------- */

.box .header .header-c{
	padding: 20px 32px 28px 32px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid #f3f3f3;
}

.box .header .header-c .header-c-l b{
	display: block;
	font-size: 14px;
	line-height: 14px;
	color: #666666;
    margin-bottom: 12px;
}

.box .header .header-c .header-c-l p{
	font-size: 12px;
	line-height: 12px;
	color: #808080;
}

.box .header .header-c .header-c-r{
	font-size: 12px;
	line-height: 12px;
	color: #222234;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

.box .header .header-c .header-c-r img{
	display: inline-block;
	width: 18px;
	height: 18px;
}

.box .header .header-c .header-c-r:hover{
	color: #0066cc;
}

/* -------------------------------------------------------------------------------------------- */

.box .header .header-d{
	padding: 34px 32px 24px 32px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.box .header .header-d p{
	display: inline-block;
	font-size: 16px;
	line-height: 26px;
	color: #222234;
	font-weight: 900;
	transform: rotate(-0.04deg);
    -ms-transform: rotate(-0.04deg);
    -moz-transform: rotate(-0.04deg);
    -webkit-transform: rotate(0.04deg);
    -o-transform: rotate(-0.04deg);
}

.box .header .header-d p:before{
	content: "";
    display: inline-block;
    vertical-align: middle;
    clear: both;
    width: 6px;
    height: 16px;
    border-radius: 6px;
    background: #f01414;
    position: absolute;
    top: 5px;
    left: -34px;
    transform: rotate(8deg);
    -ms-transform: rotate(8deg);
    -moz-transform: rotate(8deg);
    -webkit-transform: rotate(8deg);
    -o-transform: rotate(8deg);
}

.box .header .header-d p img,
.box .header .header-e p img{
	display: inline-block;
	width: 22px;
	height: 22px;
	margin-right: 6px;
	position: relative;
	top: 3px;
}

.box .header .header-d a.text{
	font-size: 12px;
	line-height: 12px;
	color: #aaaaaa;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

.box .header .header-d a.text:hover{
	color: #666666;
}

.box .header .header-d a.more{
	display: inline-block;
	width: 16px;
	height: 16px;
	background: url(../../images/2020/common/icon_go_more.png) no-repeat;
	-moz-background-size: 16px 32px;
	-webkit-background-size: 16px 32px;
	background-size: 16px 32px;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

.box .header .header-d a.more:hover{
	background-position: 0 -16px;
}

/* -------------------------------------------------------------------------------------------- */

.box .header .header-e,
.boxs .header .header-e{
	padding: 34px 32px 24px 32px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid #f3f3f3;
}

.box .header .header-e p,
.boxs .header .header-e p{
	display: inline-block;
	font-size: 16px;
	line-height: 26px;
	color: #222234;
	font-weight: 900;
	transform: rotate(-0.04deg);
    -ms-transform: rotate(-0.04deg);
    -moz-transform: rotate(-0.04deg);
    -webkit-transform: rotate(0.04deg);
    -o-transform: rotate(-0.04deg);
}

.box .header .header-e p:before,
.boxs .header .header-e p:before{
	content: "";
    display: inline-block;
    vertical-align: middle;
    clear: both;
    width: 6px;
    height: 16px;
    border-radius: 6px;
    background: #f01414;
    position: absolute;
    top: 5px;
    left: -34px;
    transform: rotate(8deg);
    -ms-transform: rotate(8deg);
    -moz-transform: rotate(8deg);
    -webkit-transform: rotate(8deg);
    -o-transform: rotate(8deg);
}

.box .header .header-e em,
.boxs .header .header-e em{
	font-size: 12px;
	line-height: 26px;
	color: #808080;
}

.box .header .header-e span.text,
.boxs .header .header-e span.text{
	font-size: 12px;
	line-height: 12px;
	color: #808080;
}

.box .header .header-e a.text,
.boxs .header .header-e a.text{
	font-size: 12px;
	line-height: 12px;
	color: #aaaaaa;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

.box .header .header-e a.text:hover,
.boxs .header .header-e a.text:hover{
	color: #666666;
}

.box .header .header-e a.more,
.boxs .header .header-e a.more{
	display: inline-block;
	width: 16px;
	height: 16px;
	background: url(../../images/2020/common/icon_go_more.png) no-repeat;
	-moz-background-size: 16px 32px;
	-webkit-background-size: 16px 32px;
	background-size: 16px 32px;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

.box .header .header-e a.more:hover,
.boxs .header .header-e a.more:hover{
	background-position: 0 -16px;
}

/* -------------------------------------------------------------------------------------------- */

.box .titler{
	padding: 22px 22px 16px 22px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid #f3f3f3;
}

.box .titler p{
	font-size: 16px;
	line-height: 26px;
	color: #222234;
	font-weight: 900;
	transform: rotate(-0.04deg);
    -ms-transform: rotate(-0.04deg);
    -moz-transform: rotate(-0.04deg);
    -webkit-transform: rotate(0.04deg);
    -o-transform: rotate(-0.04deg);
	margin-left: 2px;
	position: relative;
}

.box .titler a{
	display: inline-block;
	width: 16px;
	height: 16px;
	border-radius: 4px;
	background: url(../../images/2020/common/icon_go_more.png) no-repeat;
	-moz-background-size: 16px 32px;
	-webkit-background-size: 16px 32px;
	background-size: 16px 32px;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

.box .titler a:hover{
	background-position: 0 -16px;
}

/*------------------------------------------------*/

.box .titlers{
	padding: 22px 22px 16px 22px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.box .titlers p{
	flex: 1;
	font-size: 16px;
	line-height: 26px;
	color: #222234;
	font-weight: 900;
	transform: rotate(-0.04deg);
    -ms-transform: rotate(-0.04deg);
    -moz-transform: rotate(-0.04deg);
    -webkit-transform: rotate(0.04deg);
    -o-transform: rotate(-0.04deg);
	margin-left: 2px;
	position: relative;
	overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
}

.box .titlers p img{
	display: inline-block;
	width: 14px;
	height: 14px;
	position: relative;
	top: 2px;
	margin-right: 5px;
}

.box .titlers a{
	display: inline-block;
	width: 16px;
	height: 16px;
	border-radius: 4px;
	background: url(../../images/2020/common/icon_go_more.png) no-repeat;
	-moz-background-size: 16px 32px;
	-webkit-background-size: 16px 32px;
	background-size: 16px 32px;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

.box .titlers a:hover{
	background-position: 0 -16px;
}

/*------------------------------------------------*/

.box .lister li{
	padding: 12px 16px;
	border-top: 1px dashed #f3f3f3;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

.box .lister li:hover{
	background: #f9fafc;
}

.box .lister li:nth-of-type(1){
	padding: 20px 16px 12px 16px;
	border-top: none;
}

.box .lister li:nth-last-child(1){
	padding: 12px 16px 20px 16px;
	border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.box .lister li .lister-title{
	padding: 0 8px;
	display: block;
    font-size: 14px;
    line-height: 20px;
    color: #121212;
    -webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

.box .lister li dl{
	padding: 0 4px;
	overflow: hidden;
	max-height: 26px;
	margin-top: 9px;
}

.box .lister li dl dt{
	float: left;
	margin-right: 8px;
}

.box .lister li dl dt a{
	float: left;
	font-size: 12px;
    line-height: 12px;
    color: #8590a6;
    padding: 7px 10px;
    background: #f6f6f6;
    border-radius: 8px;
    -webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

.box .lister li:hover dl dt a{
	color: #4262de;
    background: #eceffc;
}

.box .lister li dl dt a:hover{
	background: #e4e9fa;
	border-radius: 12px;
}

.box .lister li dl dd{
	float: left;
	font-size: 12px;
    line-height: 26px;
    color: #909090;
}

.box .lister li dl dd:before{
	content: "";
    display: inline-block;
    vertical-align: middle;
    clear: both;
    width: 1px;
    height: 7px;
    background: #cbcbcb;
    position: relative;
    top: -1px;
    margin: 0 6px;
}

.box .lister li dl dd:nth-of-type(1):before{
	display: none;
}

.box .lister li p{
	padding: 0 8px;
	font-size: 12px;
    line-height: 20px;
    color: #909090;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-top: 8px;
}

.box .lister li:hover > .lister-title{
	color: #000000;
}

/*------------------------------------------------*/

.box .re-lister li{
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

.box .re-lister li:nth-of-type(1){
	padding: 8px 0 0 0;
}

.box .re-lister li:nth-last-child(1){
	padding: 0 0 10px 0;
	border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.box .re-lister li:hover{
	background: #f9fafc;
}

.box .re-lister li a{
	padding: 12px 24px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-top: 1px dashed #f3f3f3;
}

.box .re-lister li:nth-of-type(1) a{
	border-top: none;
}

.box .re-lister li a strong{
	display: inline-block;
	width: 46px;
	height: 46px;
	border: 1px solid #f3f3f3;
	border-radius: 10px;
	overflow: hidden;
	margin-right: 14px;
}

.box .re-lister li a strong img{
	display: inline-block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.box .re-lister li a dl{
	flex: 1;
}

.box .re-lister li a dl dt{
	font-size: 14px;
	line-height: 22px;
	color: #333333;
	overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    -webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

.box .re-lister li a dl dd{
	font-size: 12px;
	line-height: 20px;
	color: #999999;
	overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    -webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

.box .re-lister li a:hover dl dt{
	color: #000000;
}

.box .re-lister li a:hover dl dd{
	color: #888888;
}

/*------------------------------------------------*/

.box .shower{
	padding: 0 24px;
	margin: 4px 0 20px 0;
}

.box .shower .t-top{
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}

.box .shower .t-top img{
	display: inline-block;
	width: 16px;
	height: 16px;
	margin: 0 6px 4px 0;
}

.box .shower .t-top span{
	flex: 1;
	font-size: 32px;
	line-height: 32px;
	color: #2d354c;
	font-weight: 900;
	letter-spacing: -0.4px;

}

.box .shower .t-top p{
	font-size: 12px;
	line-height: 12px;
	font-style: oblique;
	margin-bottom: 6px;
}

.box .shower .t-top p i{
	display: inline-block;
	width: 12px;
	height: 12px;
	background: url(../../images/2020/common/icon_quota_04.png) no-repeat;
	-moz-background-size: 12px 24px;
	-webkit-background-size: 12px 24px;
	background-size: 12px 24px;
	position: relative;
	top: 1px;
	margin-right: 3px;
}

.box .shower .t-top p.up{
	color: #f01414;
}

.box .shower .t-top p.up i{
	background-position: 0 0;
}

.box .shower .t-top p.down{
	color: #5fb86b;
}

.box .shower .t-top p.down i{
	background-position: 0 -12px;
}

.box .shower .t-top .advise-1{
	padding: 7px 13px;
	font-size: 13px;
	line-height: 13px;
	color: #ffffff;
	background: #f01414;
	border-radius: 12px;
	box-shadow: 0px 0px 8px rgba(250, 20, 20, 0.5);
	-moz-box-shadow: 0px 0px 8px rgba(250, 20, 20, 0.5);
	-webkit-box-shadow: 0px 0px 8px rgba(250, 20, 20, 0.5);
}

.box .shower .t-top .advise-2{
	padding: 7px 13px;
	font-size: 13px;
	line-height: 13px;
	color: #ffffff;
	background: #fc703f;
	border-radius: 12px;
	box-shadow: 0px 0px 8px rgba(252, 114, 64, 0.5);
	-moz-box-shadow: 0px 0px 8px rgba(252, 114, 64, 0.5);
	-webkit-box-shadow: 0px 0px 8px rgba(252, 114, 64, 0.5);
}

.box .shower .t-top .advise-3{
	padding: 7px 13px;
	font-size: 13px;
	line-height: 13px;
	color: #ffffff;
	background: #fcad3f;
	border-radius: 12px;
	box-shadow: 0px 0px 8px rgba(252, 173, 63, 0.5);
	-moz-box-shadow: 0px 0px 8px rgba(252, 173, 63, 0.5);
	-webkit-box-shadow: 0px 0px 8px rgba(252, 173, 63, 0.5);
}

.box .shower .t-top .advise-4{
	padding: 7px 13px;
	font-size: 13px;
	line-height: 13px;
	color: #ffffff;
	background: #05b403;
	border-radius: 12px;
	box-shadow: 0px 0px 8px rgba(0, 180, 2, 0.5);
	-moz-box-shadow: 0px 0px 8px rgba(0, 180, 2, 0.5);
	-webkit-box-shadow: 0px 0px 8px rgba(0, 180, 2, 0.5);
}

.box .shower .t-top .num{
	flex: 1;
	position: relative;
}

.box .shower .t-top .num .num-t{
	display: block;
	width: 100%;
	font-size: 28px;
	line-height: 28px;
	color: #222234;
	font-weight: 900;
	position: absolute;
	top: -1px;
	left: -1px;
}

.box .shower .t-top .num .num-b{
	display: block;
	width: 100%;
	font-size: 28px;
	line-height: 28px;
	color: #ffffff;
	font-weight: 900;
	text-shadow: #222234 1px 0 0, #222234 0 1px 0, #222234 -1px 0 0, #222234 0 -1px 0;
}

.box .shower .t-bottom{
	margin-top: 8px;
}

.box .shower .t-bottom p{
	font-size: 12px;
	line-height: 18px;
	color: #808080;
	text-align: justify;
}

.box .shower .t-bottom span{
	display: block;
	font-size: 12px;
	line-height: 18px;
	color: #353e5e;
	text-align: justify;
}

/*------------------------------------------------*/

.box .liner dt a{
	padding: 14px 24px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-top: 1px solid #f6f6f6;
	background: #ffffff;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

.box .liner dt a:hover{
	background: #f9f9f9;
}

.box .liner dt a:hover strong{
	color: #000000;
}

.box .liner dt a:hover em{
	color: #000000;
}

.box .liner dt a:hover span{
	color: #000000;
}

.box .liner dt:nth-last-child(1) a{
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
}

.box .liner dt a strong{
	display: inline-block;
	width: 38%;
	font-size: 13px;
	line-height: 13px;
	color: #333333;
	font-weight: 400;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

.box .liner dt a em{
	display: inline-block;
	width: 20%;
	font-size: 14px;
	line-height: 14px;
	color: #333333;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

.box .liner dt a span{
	display: inline-block;
	width: 42%;
	font-size: 12px;
	line-height: 12px;
	color: #898989;
	text-align: right;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

.box .liner dt.on a{
	background: #f9f9f9;
}

.box .liner dt.on a strong{
	font-weight: 900;
}

.box .liner dt.on a em{
	font-weight: 900;
}

.box .liner dt.on a span{
	font-weight: 700;
}

.box .liner:hover dt.on a{
	background: #ffffff;
}

.box .liner:hover dt.on a:hover{
	background: #f9f9f9;
}

/*------*/

.box .liner dd a{
	padding: 12px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f6f6f6;
    background: #ffffff;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.box .liner dd a:hover{
	background: #f9fafc;
}

.box .liner dd:nth-last-child(1) a{
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
}

.box .liner dd a em{
	flex: 1;
	font-size: 14px;
	line-height: 22px;
	color: #333333;
	-webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.box .liner dd a:hover em{
	color: #000000;
}

.box .liner dd a span{
	font-size: 14px;
	line-height: 22px;
	color: #fc7240;
	margin-left: 30px;
}

/*------------------------------------------------*/

.box .liner-2 dt a{
	padding: 14px 24px;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	border-top: 1px solid #f6f6f6;
	background: #ffffff;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

.box .liner-2 dt a:hover{
	background: #f9f9f9;
}

.box .liner-2 dt:nth-last-child(1) a{
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
}

.box .liner-2 dt dl{
	flex: 1;
}

.box .liner-2 dt dl dt{
	font-size: 14px;
	line-height: 18px;
	color: #333333;
	display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
}

.box .liner-2 dt dl dd{
	font-size: 12px;
	line-height: 16px;
	color: #999999;
	margin-top: 5px;
}

.box .liner-2 dt span{
	font-size: 14px;
	line-height: 18px;
	color: #fc7240;
	margin-left: 20px;
}

/*------------------------------------------------*/

.box .dataer{
	margin: -10px 0 24px 0;
}

.box .dataer .t-top{
	margin-bottom: 4px;
}

.box .dataer .t-top .salarys,
.box .dataer .t-top .difficulty{
	width: 100%;
	height: 200px;
}

.box .dataer .t-top .outside-box{
	padding: 0 18px;
	height: 160px;
	margin-top: 10px;
}

.box .dataer .t-top .outside-box .inside-box{
	width: 100%;
	height: 100%;
}

.box .dataer .t-bottom .salarys-list,
.box .dataer .t-bottom .difficulty-list{
	padding: 0 28px;
	display: flex;
	flex-wrap: wrap;
}

.box .dataer .t-bottom .salarys-list dd,
.box .dataer .t-bottom .difficulty-list dd{
	min-width: 50px;
    font-size: 13px;
    line-height: 13px;
    color: #606060;
    margin: 4px 8px;
}

.box .dataer .t-bottom .salarys-list dd i,
.box .dataer .t-bottom .difficulty-list dd i{
	float: left;
	display: inline-block;
	width: 16px;
	height: 12px;
	border-radius: 6px;
	margin-right: 6px;
}

.box .dataer .t-bottom .salarys-list dd:nth-of-type(1) i,
.box .dataer .t-bottom .difficulty-list dd:nth-of-type(1) i,
.wages-change-box .wages-change .describe li:nth-of-type(1) i,
.trend-box .trend-l .chart-list .infor p:nth-of-type(1) i{
	background: #4262de;
}

.box .dataer .t-bottom .salarys-list dd:nth-of-type(2) i,
.box .dataer .t-bottom .difficulty-list dd:nth-of-type(2) i,
.wages-change-box .wages-change .describe li:nth-of-type(2) i,
.trend-box .trend-l .chart-list .infor p:nth-of-type(2) i{
	background: #5571e1;
}

.box .dataer .t-bottom .salarys-list dd:nth-of-type(3) i,
.box .dataer .t-bottom .difficulty-list dd:nth-of-type(3) i,
.wages-change-box .wages-change .describe li:nth-of-type(3) i,
.trend-box .trend-l .chart-list .infor p:nth-of-type(3) i{
	background: #6881e5;
}

.box .dataer .t-bottom .salarys-list dd:nth-of-type(4) i,
.box .dataer .t-bottom .difficulty-list dd:nth-of-type(4) i,
.wages-change-box .wages-change .describe li:nth-of-type(4) i,
.trend-box .trend-l .chart-list .infor p:nth-of-type(4) i{
	background: #7a91e8;
}

.box .dataer .t-bottom .salarys-list dd:nth-of-type(5) i,
.box .dataer .t-bottom .difficulty-list dd:nth-of-type(5) i,
.wages-change-box .wages-change .describe li:nth-of-type(5) i,
.trend-box .trend-l .chart-list .infor p:nth-of-type(5) i{
	background: #8ea1eb;
}

.box .dataer .t-bottom .salarys-list dd:nth-of-type(6) i,
.box .dataer .t-bottom .difficulty-list dd:nth-of-type(6) i,
.wages-change-box .wages-change .describe li:nth-of-type(6) i,
.trend-box .trend-l .chart-list .infor p:nth-of-type(6) i{
	background: #a0b0ee;
}

.box .dataer .t-bottom .salarys-list dd:nth-of-type(7) i,
.box .dataer .t-bottom .difficulty-list dd:nth-of-type(7) i,
.wages-change-box .wages-change .describe li:nth-of-type(7) i,
.trend-box .trend-l .chart-list .infor p:nth-of-type(7) i{
	background: #b3c0f2;
}

.box .dataer .t-bottom .salarys-list dd:nth-of-type(8) i,
.box .dataer .t-bottom .difficulty-list dd:nth-of-type(8) i,
.wages-change-box .wages-change .describe li:nth-of-type(8) i,
.trend-box .trend-l .chart-list .infor p:nth-of-type(8) i{
	background: #d9e0f8;
}

.box .dataer .t-bottom .salarys-list dd:nth-of-type(9) i,
.box .dataer .t-bottom .difficulty-list dd:nth-of-type(9) i,
.wages-change-box .wages-change .describe li:nth-of-type(9) i,
.trend-box .trend-l .chart-list .infor p:nth-of-type(9) i{
	background: #eceffc;
}

/* ratioer-------------------------------------------------------------------------------------------- */

.box .ratioer{
	padding: 0 24px;
}

.box .ratioer .t-top{
	padding: 0 6px;
	display: flex;
	align-items: flex-end;
	color: #fc7240;
	margin-bottom: 20px;
}

.box .ratioer .t-top font{
	font-size: 12px;
	line-height: 12px;
	font-weight: 900;
}

.box .ratioer .t-top em{
	font-size: 28px;
	line-height: 28px;
	font-weight: 900;
	margin: 0 4px -2px 4px;
}

.box .ratioer .t-top span{
	font-size: 12px;
	line-height: 12px;
	margin-right: 3px;
}

.box .ratioer .t-middle{
	margin-bottom: 20px;
}

.box .ratioer .t-middle dl{
	display: flex;
	justify-content: space-between;
}

.box .ratioer .t-middle dl dt{
	padding: 6px 0 4px 0;
	flex: 1;
	display: flex;
	flex-direction: column;
	text-align: center;
	position: relative;
}

.box .ratioer .t-middle dl dt:before{
	content: "";
	display: inline-block;
	vertical-align: middle;
	clear: both;
	width: 1px;
	height: 100%;
	background: #f3f3f3;
	position: absolute;
	top: 0;
	left: 0;
}

.box .ratioer .t-middle dl dt:nth-of-type(1):before{
	display: none;
}

.box .ratioer .t-middle dl dt .num{
	font-size: 24px;
	line-height: 24px;
	color: #222234;
	margin-bottom: 8px;
}

.box .ratioer .t-middle dl dt .num i{
	display: inline-block;
	width: 10px;
	height: 6px;
	background: url(../../images/2020/common/icon_quota_05.png) no-repeat;
	-moz-background-size: 10px 12px;
	-webkit-background-size: 10px 12px;
	background-size: 10px 12px;
	margin-right: 5px;
}

.box .ratioer .t-middle dl dt .num.up i{
	background-position: 0 0;
}

.box .ratioer .t-middle dl dt .num.down i{
	background-position: 0 -6px;
}

.box .ratioer .t-middle dl dt .num span{
	font-size: 18px;
}

.box .ratioer .t-middle dl dt .num b{
	font-size: 16px;
	font-style: oblique;
}

.box .ratioer .t-middle dl dt .tip{
	font-size: 12px;
	line-height: 22px;
	color: #999999;
}

.box .ratioer .t-middle dl dt .tip span{
	color: #333333;
	margin: 0 4px;
}

.box .ratioer .t-more{
	padding: 6px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.box .ratioer .t-more p{
	font-size: 36px;
	line-height: 36px;
	color: #4163de;
	font-weight: 900;
	font-style: italic;
}

.box .ratioer .t-more p span{
	font-size: 24px;
}

.box .ratioer .t-more .status .status-t b{
	background: #4163de;
}

.box .ratioer .t-more .status .status-t b i{
	background: #4163de;
}

.box .ratioer .t-bottom{
	margin-bottom: 20px;
}

.box .ratioer .t-bottom p{
	font-size: 12px;
	line-height: 18px;
	color: #999999;
	text-align: justify;
	margin-top: 8px;
}

.box .ratioer .t-bottom p span{
	color: #333333;
	margin: 0 2px;
}

/* player-------------------------------------------------------------------------------------------- */

.box .player{
	display: flex;
	flex-direction: column;
}

.box .player dl dt{
	padding: 4px 26px;
}

.box .player dl dt h2{
	display: flex;
	align-items: flex-end;
}

.box .player dl dt h2 span{
	font-size: 12px;
	line-height: 12px;
	color: #fc7240;
	font-weight: 900;
	position: relative;
	top: -2px;
}

.box .player dl dt h2 em{
	font-size: 22px;
	line-height: 22px;
	color: #fc7240;
	font-weight: 900;
	margin: 0 3px;
}

.box .player dl dt h2 font{
	font-size: 12px;
	line-height: 12px;
	color: #fc7240;
	position: relative;
	top: -2px;
}

.box .player dl dt h3{
	font-size: 12px;
	line-height: 16px;
	color: #969696;
	margin-top: 9px;
}

.box .player dl dd{
	padding: 16px 30px 20px 30px;
	display: flex;
	flex-direction: column;
	border-top-left-radius: 24px;
	border-top-right-radius: 24px;
	background: linear-gradient(180deg, #fafafa 46%, hsla(0,0%,100%,0));
	margin: 10px 0 8px 0;
}

.box .player dl dd h4{
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	margin: 4px 0;
}

.box .player dl dd h4 span{
	font-size: 12px;
	line-height: 12px;
	color: #666666;
}

.box .player dl dd h4 em{
	font-size: 14px;
	line-height: 14px;
	color: #222234;
	margin-right: 1px;
}

/* viewer-------------------------------------------------------------------------------------------- */

.box .viewer{
	padding: 24px 24px 0 24px;
	border-top-left-radius: 24px;
	border-top-right-radius: 24px;
	background: linear-gradient(180deg, #fafafa 46%, hsla(0,0%,100%,0));
}

.box .viewer .t-top{
	margin-bottom: 20px;
}

.box .viewer .t-top .view{
	width: 100%;
	height: 160px;
}

.box .viewer .t-top .view-p{
	font-size: 12px;
	line-height: 14px;
	color: #222234;
	margin-top: 10px;
}

.box .viewer .t-top .job-hopping-list{
	padding: 0 10px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: -4px;
}

.box .viewer .t-top .job-hopping-list li,
.box .viewer .t-top .job-hopping-list li a{
	display: flex;
	flex-direction: column;
	align-items: center;
}

.box .viewer .t-top .job-hopping-list li em{
	font-size: 14px;
	line-height: 18px;
	color: #222234;
	font-weight: 900;
}

.box .viewer .t-top .job-hopping-list li img{
	width: 24px;
	height: 24px;
	margin: 3px 0 8px 0;
}

.box .viewer .t-top .job-hopping-list li p{
	font-size: 12px;
	line-height: 16px;
	color: #666666;
}

.box .viewer .t-middle p{
	font-size: 13px;
	line-height: 19px;
	color: #666666;
	text-align: justify;
	margin-top: 8px;
}

.box .viewer .t-bottom{
	margin-bottom: 20px;
}

.box .viewer .t-bottom p{
	font-size: 12px;
	line-height: 18px;
	color: #999999;
	text-align: justify;
	margin-top: 8px;
}

.box .viewer .t-bottom p span{
	color: #333333;
	margin: 0 2px;
}

.box .viewer .lastmore{
	display: inline-block;
	font-size: 12px;
	line-height: 16px;
	color: #222234;
	margin-bottom: 20px;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

.box .viewer .lastmore:hover{
	color: #4263de;
}

/* morer-------------------------------------------------------------------------------------------- */

.box .morer{
	padding: 14px 24px 18px 24px;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	border-top: 1px solid #f3f3f3;
}

.box .morer a{
	padding: 9px 17px;
	float: left;
	font-size: 13px;
	line-height: 13px;
	color: #8590a6;
	background: #f6f6f6;
	border-radius: 8px;
	margin: 0 10px 6px 0;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

.box .morer a:hover{
	color: #4262de;
    background: #eceffc;
    border-radius: 15px;
}

/* suber------------------------------------------------*/

.box .suber{
	padding: 20px 24px;
	border-top: 1px solid #f3f3f3;
}

.box .suber em{
	font-size: 13px;
	line-height: 21px;
	color: #222234;
	margin-bottom: 8px;
}

.box .suber em span{
	color: #fc7240;
}

.box .suber em span:before{
	content: "【";
	display: inline-block;
	vertical-align: middle;
	clear: both;
	position: relative;
	top: -2px;
}

.box .suber em span:after{
	content: "】";
	display: inline-block;
	vertical-align: middle;
	clear: both;
	position: relative;
	top: -2px;
}

.box .suber p{
	font-size: 12px;
	line-height: 20px;
	color: #778899;
}

.box .suber .suber-but{
	display: flex;
	justify-content: space-around;
	margin-top: 20px; 
}

.box .suber .suber-but .desert{
	padding: 9px 30px;
	display: inline-block;
	border-radius: 17px;
	font-size: 13px;
	line-height: 13px;
	outline: none;
	letter-spacing: 1px;
	border: 1px solid #778899;
	background: #ffffff;
	color: #778899;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

.box .suber .suber-but .desert:hover{
	border: 1px solid #e8e8e8;
	background: #f4f4f4;
	border-radius: 10px;
}

.box .suber .suber-but .desert-done{
	padding: 9px 30px;
	display: inline-block;
	border-radius: 17px;
	font-size: 13px;
	line-height: 13px;
	outline: none;
	letter-spacing: 1px;
	border: 1px solid #222234;
	background: #222234;
	color: #ffffff;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

.box .suber .suber-but .desert-done:hover{
	background: #000000;
	border-radius: 10px;
}

/* Guide306-------------------------------------------------------------------------------------------- */

.Guide306{
	display: inline-block;
	width: 100%;
	position: relative;
	border-radius: 20px;
	margin-bottom: 20px;
}

.Guide306 p{
	display: flex;
	padding: 20px 20px 12px 20px;
	font-size: 16px;
	line-height: 24px;
	color: #333333;
	font-weight: 900;
	transform: rotate(-0.04deg);
    -ms-transform: rotate(-0.04deg);
    -moz-transform: rotate(-0.04deg);
    -webkit-transform: rotate(0.04deg);
    -o-transform: rotate(-0.04deg);
    border-bottom: 1px solid #f3f3f3;
}

.Guide306 p img{
	display: inline-block;
	width: 24px;
	height: 24px;
	margin-right: 8px;
}

.Guide306 ul{
	padding: 2px 4px 6px 4px;
}

.Guide306 ul li{
	margin-top: 4px;
}

.Guide306 ul li a{
	display: block;
	padding: 6px 20px 6px 24px;
	background: #fbfbfb;
	border-radius: 4px;
	cursor: pointer;
	font-size: 14px;
	line-height: 20px;
	color: #222234;
	text-align: justify;
	border-right: 4px solid #fbfbfb;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

.Guide306 ul li:nth-last-child(1) a{
	border-bottom-left-radius: 16px;
	border-bottom-right-radius: 16px;
}

.Guide306 ul li a:hover{
	background: #f2f2f2;
	border-right: 4px solid #f2f2f2;
	border-radius: 6px;
}

.Guide306 ul li:nth-last-child(1) a:hover{
	border-bottom-left-radius: 16px;
	border-bottom-right-radius: 16px;
}

.Guide306 ul li a.current{
	border-right: 4px solid #f01414;
}

.Guide306 ul li:nth-last-child(1) a.current{
	border-bottom-right-radius: 9px;
}

.Guide306 ul li:nth-last-child(1) a.current:hover{
	border-bottom-left-radius: 16px;
	border-bottom-right-radius: 9px;
}

.Guide306 ul li a span{
	font-weight: 900;
}

.Guide306 ul li a span:after{
	content: "-";
    display: inline-block;
    vertical-align: middle;
    clear: both;
    font-size: 14px;
    position: relative;
    top: -2px;
    margin: 0 6px 0 2px;
}

/* Follow306-------------------------------------------------------------------------------------------- */

.Follow306{
	width: 306px;
	height: auto;
	position: relative;
	margin-bottom: 20px;
}

.Follow{
	padding: 20px;
	width: 266px;
	display: flex;
	justify-content: space-between;
	border-radius: 20px;
	cursor: pointer;
}

.Follow .Follow-dl{
	display: flex;
	justify-content: space-between;
	margin-top: 6px;
}

.Follow .Follow-dl dt{
	display: inline-block;
	width: 40px;
	height: 40px;
	overflow: hidden;
	margin-right: 10px;
}

.Follow .Follow-dl dt img{
	display: inline-block;
	width: 100%;
	min-height: 100%;
}

.Follow .Follow-dl dd b{
	display: block;
	font-size: 14px;
	line-height: 20px;
	color: #222234;
	font-weight: 700;
	margin-top: 2px;
}

.Follow .Follow-dl dd p{
	font-size: 12px;
    line-height: 12px;
    color: #999999;
    margin-top: 4px;
}

.Follow strong{
	display: inline-block;
	width: 48px;
	height: 48px;
	overflow: hidden;
}

.Follow strong img{
	display: inline-block;
	width: 100%;
	min-height: 100%;
}

.Follow-more{
	padding: 20px;
	display: flex;
	align-items: center;
	width: 264px;
	height: auto;
    background: #ffffff;
    border: 1px solid #f6f6f6;
    border-radius: 16px;
    box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.1);
    position: absolute;
	left: 0;
	bottom: -184px;
	-webkit-animation: show 0.2s ease-out forwards 1;
	animation: show 0.2s ease-out forwards 1;
	display: none;
}

.Follow-more:before{
	content: "";
	position: absolute;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	width: 14px;
	height: 14px;
	border: 1px solid #f6f6f6;
	border-bottom-color: #ffffff;
	border-right-color: #ffffff;
	background: #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	pointer-events: auto;
	right: 20px;
	top: -7px;
}

.Follow-more strong{
	display: inline-block;
	width: 128px;
	height: 128px;
	overflow: hidden;
	margin-right: 16px;
}

.Follow-more strong img{
	display: inline-block;
	width: 100%;
	min-height: 100%;
}

.Follow-more .Follow-more-dl{
	flex: 1;
}

.Follow-more .Follow-more-dl dt b{
	display: block;
	font-size: 14px;
	line-height: 20px;
	color: #222234;
}

.Follow-more .Follow-more-dl dd{
	margin-top: 8px;
}

.Follow-more .Follow-more-dl dd p{
	font-size: 12px;
	line-height: 20px;
	color: #999999;
}

.Follow306:hover > .Follow-more{
	display: flex;
}

/* 广告-------------------------------------------------------------------------------------------- */

.Advert858{
	display: flex;
	width: 858px;
	height: auto;
	border-radius: 20px;
	overflow: hidden;
}

.Advert306{
	display: flex;
	width: 306px;
	height: auto;
	border-radius: 20px;
	overflow: hidden;
}

.Advert858 img,
.Advert306 img{
	display: inline-block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}


/* 薪酬查询-------------------------------------------------------------------------------------------- */

.line306{
	display: flex;
	width: 306px;
	height: auto;
	border-radius: 20px;
	overflow: hidden;
}

.line306 img{
	display: inline-block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* smart-box-------------------------------------------------------------------------------------------- */

.smart-box{
	width: 40px;
	height: auto;
	position: fixed;
	right: 40px;
	bottom: 40px;
	-webkit-animation: hide 1.0s ease-out forwards 1;
	animation: hide 1.0s ease-out forwards 1;
	display: none;
}

.isvisible{
	-webkit-animation: show 1.4s ease-out forwards 1;
	animation: show 1.4s ease-out forwards 1;
}

.smart-box li{
	width: 40px;
	height: 40px;
	background: url(../../images/2020/common/icon_smart.png) #ffffff no-repeat;
	-moz-background-size: 124px 82px;
	-webkit-background-size: 124px 82px;
	background-size: 124px 82px;
	cursor: pointer;
	-webkit-transition: all 0.8s;
	-o-transition: all 0.8s;
	transition: all 0.8s;
	box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.12);
    -moz-box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.12);
    -webkit-box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.12);
    position: relative;
}

.smart-box li:nth-of-type(1){
	border-top-left-radius: 16px;
	border-top-right-radius: 16px;
	background-position: 0 0;
}

.smart-box li:nth-of-type(2){
	background-position: -42px 0;
}

.smart-box li:nth-of-type(3){
	background-position: -84px 0;
}

.smart-box li:nth-last-child(1){
	border-bottom-left-radius: 16px;
	border-bottom-right-radius: 16px;
}

.smart-box li:nth-of-type(1):hover{
	background-position: 0 -42px;
}

.smart-box li:nth-of-type(2):hover{
	background-position: -42px -42px;
}

.smart-box li:nth-of-type(3):hover{
	background-position: -84px -42px;
}

/* -------------------------------------------------------------------------------------------- */

.smart-box li.goshare .goshare-list{
	padding: 12px 14px;
	width: 168px;
	height: auto;
	position: absolute;
	top: -8px;
	right: 60px;
	background: #ffffff;
	border: 1px solid #ebebeb;
	border-radius: 16px;
	z-index: 2;
	box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.12);
	-moz-box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.12);
	-webkit-box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.12);
	display: none;
}

.smart-box li.goshare .goshare-list:before{
    content: "";
    position: absolute;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 14px;
    height: 14px;
    border: 1px solid #ebebeb;
    border-left-color: #ffffff;
    border-bottom-color: #ffffff;
    background: #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    pointer-events: auto;
    right: -7px;
    top: 24px;
}

.smart-box li.goshare .goshare-list dd{
	float: left;
	margin: 0 3px;
}

.smart-box li.goshare .goshare-list dd a{
	float: left;
	display: inline-block;
	width: 36px;
	height: 36px;
	border-radius: 12px;
	background: url(../../images/2020/common/icon_share_03.png) no-repeat;
	-moz-background-size: 150px 74px;
	-webkit-background-size: 150px 74px;
	background-size: 150px 74px;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

.smart-box li.goshare .goshare-list dd.wechat a{
	background-position: 0 0;
}

.smart-box li.goshare .goshare-list dd.weibo a{
	background-position: -38px 0;
}

.smart-box li.goshare .goshare-list dd.qq a{
	background-position: -76px 0;
}

.smart-box li.goshare .goshare-list dd.qzone a{
	background-position: -114px 0;
}

.smart-box li.goshare .goshare-list dd.wechat:hover a{
	background-position: 0 -38px;
}

.smart-box li.goshare .goshare-list dd.weibo:hover a{
	background-position: -38px -38px;
}

.smart-box li.goshare .goshare-list dd.qq:hover a{
	background-position: -76px -38px;
}

.smart-box li.goshare .goshare-list dd.qzone:hover a{
	background-position: -114px -38px;
}

/* -------------------------------------------------------------------------------------------- */

.smart-box li.goapp .goapp-list{
	padding: 18px 20px;
	width: 380px;
	height: 136px;
	position: absolute;
	bottom: -8px;
	right: 60px;
	background: #ffffff;
	border: 1px solid #ebebeb;
	border-radius: 16px;
	z-index: 2;
	box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.12);
	-moz-box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.12);
	-webkit-box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.12);
	display: none;
}

.smart-box li.goapp .goapp-list:before{
    content: "";
    position: absolute;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 14px;
    height: 14px;
    border: 1px solid #ebebeb;
    border-left-color: #ffffff;
    border-bottom-color: #ffffff;
    background: #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    pointer-events: auto;
    right: -7px;
    bottom: 24px;
}

.smart-box li.goapp .goapp-list .goapp-list-main{
	display: flex;
	flex-wrap: wrap;
	position: relative;
}

.smart-box li.goapp .goapp-list .goapp-list-main dl{
	width: 380px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.smart-box li.goapp .goapp-list .goapp-list-main dl dt{
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.smart-box li.goapp .goapp-list .goapp-list-main dl dt strong{
	display: inline-block;
	width: 136px;
	height: 136px;
	overflow: hidden;
	margin-right: 10px;
}

.smart-box li.goapp .goapp-list .goapp-list-main dl dt strong img{
	display: inline-block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.smart-box li.goapp .goapp-list .goapp-list-main dl dt p{
	flex: 1;
	width: 150px;
	text-align: center;
}

.smart-box li.goapp .goapp-list .goapp-list-main dl dt p span{
	display: block;
    font-size: 13px;
    line-height: 15px;
    color: #666666;
    margin-bottom: 8px;
}

.smart-box li.goapp .goapp-list .goapp-list-main dl dt p em{
	display: block;
    font-size: 13px;
    line-height: 15px;
    color: #1f1f1f;
    font-weight: 600;
    margin-top: 18px;
}

.smart-box li.goapp .goapp-list .goapp-list-main dl dd{
	padding: 8px 0 8px 20px;
	display: flex;
	width: 46px;
	flex-direction: column;
	align-items: center;
	border-left: 1px dashed #eaeaea;
}

.smart-box li.goapp .goapp-list .goapp-list-main dl dd span{
	font-size: 13px;
    line-height: 15px;
    color: #4262de;
    margin: 2px 0;
    -webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

.smart-box li.goapp .goapp-list .goapp-list-main dl dd i{
	display: inline-block;
	width: 12px;
	height: 12px;
	background: url(../../images/2020/common/icon_more_02.png) no-repeat;
	-moz-background-size: 12px 12px;
	-webkit-background-size: 12px 12px;
	background-size: 12px 12px;
	margin-top: 8px;
}

.smart-box li.goapp .goapp-list .next{
	display: inline-block;
	width: 86px;
	height: 174px;
	background: pink;
	position: absolute;
	top: 0;
	right: 0;
	opacity: 0;
}

/* popup-box-------------------------------------------------------------------------------------------- */

.popup-box{
	position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 3;
    display: none;
}

/* -------------------------------------------------------------------------------------------- */

.popup-follow-box{
	padding: 30px 40px;
	width: 568px;
    height: auto;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    margin: 0 auto;
    position: relative;
    top: 28%;
}

.popup-follow-box .popup-close{
	display: inline-block;
    width: 39px;
    height: 42px;
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
}

.popup-follow-box .popup-close img{
	width: 100%;
}

.popup-follow-box .popup-follow li.forWechat{
	display: flex;
	justify-content: space-between;
}

.popup-follow-box .popup-follow li.forWechat .t-fl{
	flex: 1;
}

.popup-follow-box .popup-follow li.forWechat .t-fl h2{
	margin-top: 8px;
}

.popup-follow-box .popup-follow li.forWechat .t-fr{
	display: flex;
	margin-left: 40px;
}

.popup-follow-box .popup-follow li.forWechat .t-fr strong{
	display: inline-block;
	width: 160px;
	height: 160px;
	border-radius: 16px;
	overflow: hidden;
}

.popup-follow-box .popup-follow li.forWechat .t-fr strong img{
	display: inline-block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popup-follow-box .popup-follow li h2{
	font-size: 22px;
	line-height: 32px;
	color: #000000;
	margin-bottom: 14px;
}

.popup-follow-box .popup-follow li p{
	font-size: 12px;
	line-height: 20px;
	color: #666666;
}

.popup-follow-box .popup-follow li p span{
	font-size: 13px;
	color: #4262de;
}

.popup-follow-box .popup-follow li .emailInp{
	display: inline-block;
	width: 100%;
	height: 42px;
	margin: 6px 0 24px 0;
	position: relative;
}

.popup-follow-box .popup-follow li .emailInp input{
	float: left;
	display: inline-block;
	padding: 0 20px;
	width: 428px;
	height: 40px;
	border: 1px solid #e2f1ff;
	border-right: none;
	border-top-left-radius: 6px;
	border-bottom-left-radius: 6px;
	outline: none;
	font-size: 14px;
	line-height: 40px;
	color: #333333;
	cursor: pointer;
	box-shadow: 0px 0px 14px rgba(19, 81, 61, 0.24);
	-moz-box-shadow: 0px 0px 14px rgba(19, 81, 61, 0.24);
	-webkit-box-shadow: 0px 0px 14px rgba(19, 81, 61, 0.24);
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

.popup-follow-box .popup-follow li .emailInp input::-webkit-input-placeholder{
	font-size: 13px;
	line-height: 40px;
	color: #b6b6b6;
	font-weight: normal;
}

.popup-follow-box .popup-follow li .emailInp input::-moz-input-placeholder{
	font-size: 13px;
	line-height: 40px;
	color: #b6b6b6;
	font-weight: normal;
}

.popup-follow-box .popup-follow li .emailInp input::-ms-input-placeholder{
	font-size: 13px;
	line-height: 40px;
	color: #b6b6b6;
	font-weight: normal;
}

.popup-follow-box .popup-follow li .emailInp input:focus,
.popup-follow-box .popup-follow li .emailInp input:hover{
	border-top-left-radius: 15px;
	border-bottom-left-radius: 15px;
	border: 1px solid #778899;
}

.popup-follow-box .popup-follow li .emailInp button{
	display: inline-block;
	width: 100px;
	height: 42px;
	background: #778899;
	border: 0;
	outline: none;
	font-size: 14px;
	color: #ffffff;
	border-top-right-radius: 6px;
	border-bottom-right-radius: 6px;
	position: absolute;
	top: 0;
	right: 0;
	box-shadow: 0px 0px 14px rgba(87,100,112,0.24);
	-moz-box-shadow: 0px 0px 14px rgba(87,100,112,0.24);
	-webkit-box-shadow: 0px 0px 14px rgba(87,100,112,0.24);
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

.popup-follow-box .popup-follow li .emailInp button:hover{
	background: #657585;
	border-top-right-radius: 12px;
	border-bottom-right-radius: 12px;
}

.popup-follow-box .cut li{
	font-size: 14px;
	line-height: 14px;
	color: #222234;
	font-weight: 900;
	font-style: oblique;
	transform: rotate(-0.04deg);
    -ms-transform: rotate(-0.04deg);
    -moz-transform: rotate(-0.04deg);
    -webkit-transform: rotate(0.04deg);
    -o-transform: rotate(-0.04deg);
    cursor: pointer;
}

.popup-follow-box .cut li.email{
	margin-top: -20px;
}

.popup-follow-box .cut li.wechat{
	margin-top: 40px;
}

.popup-follow-box .cut li img{
	display: inline-block;
	width: 12px;
	height: 10px;
	margin-left: 8px;
}

.popup-follow-box .cut .on{
	display: none;
}

/* -------------------------------------------------------------------------------------------- */

.popup-sign-box{
	width: 400px;
    height: auto;
    background: #ffffff;
    border-radius: 20px;
    margin: 0 auto;
    position: relative;
    top: 22%;
}

.popup-sign-box .popup-close{
	display: inline-block;
    width: 30px;
    height: 30px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -50px;
    margin: auto;
    cursor: pointer;
}

.popup-sign-box .popup-close img{
	width: 100%;
}

.popup-sign-box .popup-sign li .title{
	padding: 24px 28px;
}

.popup-sign-box .popup-sign li .title p{
	float: left;
	display: inline-block;
	font-size: 16px;
	line-height: 16px;
	color: #222234;
	font-weight: 900;
	transform: rotate(-0.04deg);
    -ms-transform: rotate(-0.04deg);
    -moz-transform: rotate(-0.04deg);
    -webkit-transform: rotate(0.04deg);
    -o-transform: rotate(-0.04deg);
    position: relative;
}

.popup-sign-box .popup-sign li .title p i{
	display: inline-block;
	width: 30px;
	height: 4px;
	background: #4262de;
	border-radius: 2px;
	position: absolute;
	bottom: -14px;
	left: 0;
}

.popup-sign-box .popup-sign li .scan-code{
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 28px 0 36px 0;
}

.popup-sign-box .popup-sign li .scan-code strong{
	display: inline-block;
	width: 160px;
	height: 160px;
	border-radius: 16px;
	overflow: hidden;
	margin-bottom: 16px;
}


.popup-sign-box .popup-sign li .scan-code strong img{
	display: inline-block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popup-sign-box .popup-sign li .scan-code p{
	font-size: 12px;
	line-height: 24px;
	color: #808080;
}

.popup-sign-box .popup-sign li .scan-code p span{
	font-size: 13px;
	color: #49ac37;
	margin: 0 4px;
}

.popup-sign-box .popup-sign li .scan-other{
	padding: 16px 28px;
	border-top: 1px solid #ebebeb;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #f8f8f8;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
}

.popup-sign-box .popup-sign li .scan-other .t-fl h2{
	font-size: 14px;
	line-height: 22px;
	color: #778899;
	font-weight: 900;
	margin-bottom: 3px;
}

.popup-sign-box .popup-sign li .scan-other .t-fl a{
	font-size: 12px;
	line-height: 20px;
	color: #778899;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

.popup-sign-box .popup-sign li .scan-other .t-fl a:hover{
	color: #4262de;
}

.popup-sign-box .popup-sign li .scan-other .t-fr li{
	float: left;
	margin-left: 20px;
}

.popup-sign-box .popup-sign li .scan-other .t-fr li a{
	display: inline-block;
	text-align: center;
	font-size: 13px;
	line-height: 13px;
	color: #778899;
}

.popup-sign-box .popup-sign li .scan-other .t-fr i{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 44px;
	height: 44px;
	background: #efefef;
	border: 1px solid #efefef;
	border-radius: 23px;
	margin-bottom: 8px;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}

.popup-sign-box .popup-sign li .scan-other .t-fr i img{
	display: inline-block;
	width: 24px;
	height: 24px;
}

.popup-sign-box .popup-sign li .scan-other .t-fr li:hover i{
	background: #fafafa;
	border: 1px solid #e0e0e0;
}

.popup-sign-box .popup-sign li .account-number{
	padding: 0 28px;
	margin: 13px 0 20px 0;
	overflow: hidden;
}

.popup-sign-box .popup-sign li .account-number .account-inp{
	display: inline-block;
	width: 344px;
	margin-bottom: 12px;
	position: relative;
}

.popup-sign-box .popup-sign li .account-number .account-inp input{
	width: 100%;
	height: 46px;
	border: none;
	border-bottom: 1px solid #ebebeb;
	font-size: 14px;
	line-height: 46px;
	color: #333333;
	cursor: pointer;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

.popup-sign-box .popup-sign li .account-number .account-inp input::-webkit-input-placeholder{
	font-size: 14px;
	line-height: 46px;
	color: #778899;
	font-weight: normal;
}

.popup-sign-box .popup-sign li .account-number .account-inp input::-moz-input-placeholder{
	font-size: 14px;
	line-height: 46px;
	color: #778899;
	font-weight: normal;
}

.popup-sign-box .popup-sign li .account-number .account-inp input::-ms-input-placeholder{
	font-size: 14px;
	line-height: 46px;
	color: #778899;
	font-weight: normal;
}

.popup-sign-box .popup-sign li .account-number .account-inp input:focus{
	border-bottom: 1px dashed #c2c2c2;
}

.popup-sign-box .popup-sign li .account-number .account-inp i{
	display: inline-block;
	width: 18px;
	height: 12px;
	background: url(../../images/2020/common/icon_eyes.png) no-repeat;
	-moz-background-size: 18px 28px;
	-webkit-background-size: 18px 28px;
	background-size: 18px 28px;
	position: absolute;
	top: 17px;
	right: 2px;
	cursor: pointer;
}

.popup-sign-box .popup-sign li .account-number .account-inp i.eyes{
	background-position: 0 0;
}

.popup-sign-box .popup-sign li .account-number .account-inp i.eyes-done{
	background-position: 0 -16px;
}

.popup-sign-box .popup-sign li .account-number .account-more{
	display: flex;
	justify-content: space-between;
	margin: 8px 0;
}

.popup-sign-box .popup-sign li .account-number .account-more a.register{
	font-size: 12px;
	line-height: 22px;
	color: #175199;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

.popup-sign-box .popup-sign li .account-number .account-more a.register:hover{
	color: #4262de;
}

.popup-sign-box .popup-sign li .account-number .account-more a.forget{
	font-size: 12px;
	line-height: 22px;
	color: #778899;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

.popup-sign-box .popup-sign li .account-number .account-more a.forget:hover{
	color: #ee4341;
}

.popup-sign-box .popup-sign li .account-number .account-but{
	width: 100%;
	height: 40px;
	background: #4262de;
	border-radius: 4px;
	border: none;
	outline: none;
	font-size: 14px;
	color: #ffffff;
	margin: 26px 0 14px 0;
	-webkit-transition: all 0.6s;
	-o-transition: all 0.6s;
	transition: all 0.6s;
}

.popup-sign-box .popup-sign li .account-number .account-but:hover{
	background: #4262de;
	border-radius: 16px;
}

.popup-sign-box .popup-sign li .account-number .account-tips{
	font-size: 12px;
	line-height: 20px;
	color: #808080;
	text-align: justify;
	margin-top: 5px;
}

.popup-sign-box .popup-sign li .account-number .account-tips a{
	color: #808080;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}


.popup-sign-box .popup-sign li .account-number .account-tips a:hover{
	color: #4262de;
}

.popup-sign-box .popup-sign li .account-other{
	padding: 0 28px;
}

.popup-sign-box .popup-sign li .account-other .other-way{
	padding: 30px 0 26px 0;
	border-top: 1px solid #ebebeb;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.popup-sign-box .popup-sign li .account-other .other-way h2{
	font-size: 14px;
	line-height: 20px;
	color: #778899;
}

.popup-sign-box .popup-sign li .account-other .other-way ul li{
	float: left;
	margin-left: 10px;
}

.popup-sign-box .popup-sign li .account-other .other-way ul li a{
	display: flex;
	align-items: center;
}

.popup-sign-box .popup-sign li .account-other .other-way ul li a i{
	display: inline-block;
	width: 20px;
	height: 20px;
	margin-right: 4px;
}

.popup-sign-box .popup-sign li .account-other .other-way ul li a i img{
	display: inline-block;
	width: 100%;
}

.popup-sign-box .popup-sign li .account-other .other-way ul li a span{
	display: inline-block;
	font-size: 13px;
	line-height: 13px;
	color: #778899;
}

.popup-sign-box .cut{
	position: absolute;
	top: 0;
	right: 0;
}

.popup-sign-box .cut li{
	display: inline-block;
	width: 90px;
	height: 90px;
	cursor: pointer;
}

.popup-sign-box .cut li img{
	display: inline-block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popup-sign-box .cut .on{
	display: none;
}

/* -------------------------------------------------------------------------------------------- */

.popup-buch-box{
	padding: 32px;
	width: 736px;
    height: auto;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    margin: 0 auto;
    position: relative;
    top: 25%;
}


.popup-buch-box .popup-close{
	display: inline-block;
    width: 39px;
    height: 42px;
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
}

.popup-buch-box .popup-close img{
	width: 100%;
}

.popup-buch-box .title{
	display: block;
	font-size: 20px;
	line-height: 20px;
	color: #222234;
	font-weight: 900;
	transform: rotate(-0.04deg);
    -ms-transform: rotate(-0.04deg);
    -moz-transform: rotate(-0.04deg);
    -webkit-transform: rotate(0.04deg);
    -o-transform: rotate(-0.04deg);
}

.popup-buch-box .input{
	padding: 0 18px;
	display: block;
	width: 698px;
	height: 43px;
	border: 1px solid #eeeeee;
	border-radius: 8px;
	font-size: 13px;
	line-height: 43px;
	color: #4262de;
	margin-top: 28px;
	cursor: pointer;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

.popup-buch-box .input:focus{
	padding: 0 17px;
	width: 696px;
	height: 41px;
	border: 2px solid #4262de;
	border-radius: 8px;
	font-size: 13px;
	line-height: 41px;
}

.popup-buch-box .buch-list{
	display: flex;
	margin-top: 24px;
}

.popup-buch-box .buch-list li{
	padding: 9px 15px;
	float: left;
	border: 2px solid #ebebeb;
	font-size: 13px;
	line-height: 13px;
	color: #333333;
	border-radius: 10px;
	margin: 3px 5px;
	cursor: pointer;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

.popup-buch-box .buch-list li:hover{
	border: 2px solid #bebebe;
	color: #000000;
	border-radius: 16px;
}

.popup-buch-box .buch-list li.on{
	border: 2px solid #4262de;
	color: #4262de;
}

.popup-buch-box .buch-list li.on:hover{
	border-radius: 8px;
}

.popup-buch-box .buch-submit{
	text-align: center;
	margin-top: 40px;
}

.popup-buch-box .buch-submit button{
	display: inline-block;
	width: 200px;
	height: 40px;
	border: none;
	outline: none;
	border-radius: 8px;
	background: #4262de;
	font-size: 14px;
	line-height: 40px;
	color: #ffffff;
	letter-spacing: 1px;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

.popup-buch-box .buch-submit button:hover{
	background: #4262de;
}

/* -------------------------------------------------------------------------------------------- */

.popup-fuli-box{
	padding: 32px;
	width: 736px;
    height: auto;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    margin: 0 auto;
    position: relative;
    top: 20%;
}


.popup-fuli-box .popup-close{
	display: inline-block;
    width: 39px;
    height: 42px;
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
}

.popup-fuli-box .popup-close img{
	width: 100%;
}

.popup-fuli-box .title{
	display: block;
	font-size: 20px;
	line-height: 20px;
	color: #222234;
	font-weight: 900;
	transform: rotate(-0.04deg);
    -ms-transform: rotate(-0.04deg);
    -moz-transform: rotate(-0.04deg);
    -webkit-transform: rotate(0.04deg);
    -o-transform: rotate(-0.04deg);
}

.popup-fuli-box .input{
	padding: 0 18px;
	display: block;
	width: 698px;
	height: 43px;
	border: 1px solid #eeeeee;
	border-radius: 8px;
	font-size: 13px;
	line-height: 43px;
	color: #4262de;
	margin-top: 28px;
	cursor: pointer;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

.popup-fuli-box .input:focus{
	padding: 0 17px;
	width: 696px;
	height: 41px;
	border: 2px solid #4262de;
	border-radius: 8px;
	font-size: 13px;
	line-height: 41px;
}

.popup-fuli-box .fuli-list{
	display: flex;
	margin-top: 16px;
}

.popup-fuli-box .fuli-list .t-left{
	padding: 6px 20px 6px 0;
	border-right: 1px solid #eeeeee;
}

.popup-fuli-box .fuli-list .t-left ul li{
	width: 148px;
	height: 44px;
	background: #fbfbfb;
	border-radius: 8px;
	margin: 4px 0;
	font-size: 14px;
	line-height: 44px;
	color: #646464;
	letter-spacing: 0.4px;
	text-align: center;
	cursor: pointer;
	position: relative;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

.popup-fuli-box .fuli-list .t-left ul li:after{
	content: "";
	display: inline-block;
	vertical-align: middle;
	clear: both;
	width: 3px;
	height: 20px;
	background: #4262de;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: -189px;
	margin: auto;
	opacity: 0;
}

.popup-fuli-box .fuli-list .t-left ul li:hover{
	background: #f6f6f6;
}

.popup-fuli-box .fuli-list .t-left ul li.on{
	background: #eceffc;
	color: #4262de;
}

.popup-fuli-box .fuli-list .t-left ul li.on:after{
	opacity: 1;
}

.popup-fuli-box .fuli-list .t-right{
	padding: 11px 0 13px 20px;
	flex: 1;
	max-height: 280px;
	overflow-y: auto;
}

.popup-fuli-box .fuli-list .t-right ul li{
	padding: 9px 15px;
	float: left;
	border: 2px solid #ebebeb;
	font-size: 13px;
	line-height: 13px;
	color: #333333;
	border-radius: 10px;
	margin: 3px 5px;
	cursor: pointer;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

.popup-fuli-box .fuli-list .t-right ul li:hover{
	border: 2px solid #bebebe;
	color: #000000;
	border-radius: 16px;
}

.popup-fuli-box .fuli-list .t-right ul li.on{
	border: 2px solid #4262de;
	color: #4262de;
}

.popup-fuli-box .fuli-list .t-right ul li.on:hover{
	border-radius: 8px;
}

.popup-fuli-box .fuli-submit{
	text-align: center;
	margin-top: 40px;
}

.popup-fuli-box .fuli-submit button{
	display: inline-block;
	width: 200px;
	height: 40px;
	border: none;
	outline: none;
	border-radius: 8px;
	background: #4262de;
	font-size: 14px;
	line-height: 40px;
	color: #ffffff;
	letter-spacing: 1px;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

.popup-fuli-box .fuli-submit button:hover{
	background: #4262de;
}

/* -------------------------------------------------------------------------------------------- */

.popup-toupiao-box{
	padding: 20px 32px;
	width: 550px;
    height: auto;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    margin: 0 auto;
    position: relative;
    top: 30%;
}

.popup-toupiao-box .popup-close{
	display: inline-block;
    width: 39px;
    height: 42px;
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
}

.popup-toupiao-box .popup-close img{
	width: 100%;
}

.popup-toupiao-box .toupiao dt{
	padding: 10px;
	font-size: 14px;
	line-height: 22px;
	color: #222234;
}

.popup-toupiao-box .toupiao dt span{
	color: #f94e4c;
	margin: 0 4px;
}

.popup-toupiao-box .toupiao .toupiao-list{
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	margin: 4px 0 14px 0;
}

.popup-toupiao-box .toupiao .toupiao-list li{
	display: flex;
	align-items: center;
	margin: 4px 5px;
}

.popup-toupiao-box .toupiao .toupiao-list li input{
	opacity: 0;
}

.popup-toupiao-box .toupiao .toupiao-list li label{
	padding: 9px 23px;
	font-size: 14px;
	line-height: 14px;
	color: #778899;
	border: 2px solid #ebebeb;
	border-radius: 14px;
	cursor: pointer;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
	margin-left: -13px;
}

.popup-toupiao-box .toupiao .toupiao-list li label:hover{
	color: #797979;
	border: 2px solid #bebebe;
	border-radius: 18px;
}

.popup-toupiao-box .toupiao .toupiao-list li input:checked+label{
	color: #4262de;
	border: 2px solid #4262de;
	border-radius: 14px;
}

.popup-toupiao-box .toupiao .toupiao-list button{
	padding: 9px 23px;
	font-size: 14px;
	line-height: 14px;
	color: #778899;
	background: #ffffff;
	outline: none;
	border: 2px solid #ebebeb;
	border-radius: 14px;
	margin: 4px 5px;
	letter-spacing: 1px;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

.popup-toupiao-box .toupiao .toupiao-list.show button{
	color: #ffffff;
	background: #61687c;
	border: 2px solid #61687c;
}

/* -------------------------------------------------------------------------------------------- */

.popup-category-box{
	width: 1000px;
    height: auto;
    margin: 0 auto;
    position: relative;
    top: 10%;
}

.popup-category-box .data-list-cate{
	background: #ffffff;
	border-radius: 20px;
	overflow: hidden;
}

.popup-category-box .data-list-cate .title{
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-top: 1px solid #f3f3f3;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

.popup-category-box .data-list-cate li:nth-of-type(1) .title{
	border-top: none;
}

.popup-category-box .data-list-cate .title em{
	display: inline-block;
	width: 100px;
	text-align: center;
	font-size: 14px;
	line-height: 72px;
	color: #222222;
	font-weight: 900;
	transform: rotate(-0.04deg);
    -ms-transform: rotate(-0.04deg);
    -moz-transform: rotate(-0.04deg);
    -webkit-transform: rotate(0.04deg);
    -o-transform: rotate(-0.04deg);
	position: relative;
	cursor: pointer;
}

.popup-category-box .data-list-cate .title em:after{
	content: "";
	display: inline-block;
	vertical-align: middle;
	clear: both;
	width: 1px;
	height: 12px;
	background: #cccccc;
	position: absolute;
	top: 0;
	right: -100px;
	bottom: 0;
	left: 0;
	margin: auto;
}

.popup-category-box .data-list-cate .title p{
	flex: 1;
	display: flex;
	flex-wrap: wrap;
	height: 72px;
	overflow: hidden;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
	margin-left: 20px;
}

.popup-category-box .data-list-cate .title p a{
	font-size: 14px;
	line-height: 72px;
	color: #333333;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
	margin-right: 14px;
}

.popup-category-box .data-list-cate .title.on{
	background: #445566;
}

.popup-category-box .data-list-cate .title.on p a{
	color: #ffffff;
}

.popup-category-box .data-list-cate .title.on em{
	color: #ffffff;
}

.popup-category-box .data-list-cate .title.on p a:hover{
	color: #9abbdc;
}

.popup-category-box .data-list-cate .title p a:hover{
	color: #4262de;
}

.popup-category-box .data-list-cate .title i{
	display: inline-block;
	width: 10px;
	height: 6px;
	background: url(../../images/2020/common/icon_updownmore_03.png) no-repeat;
	-moz-background-size: 10px 12px;
	-webkit-background-size: 10px 12px;
	background-size: 10px 12px;
	background-position: 0 0;
	cursor: pointer;
	margin: 0 24px 0 40px;
}

.popup-category-box .data-list-cate .title.on i{
	background-position: 0 -6px;
}

.popup-category-box .data-list-cate .content{
	display: flex;
	justify-content: space-between;
}

.popup-category-box .data-list-cate .content .hd{
	background: #f5f6f7;
	max-height: 280px;
	overflow-y: scroll;
}

.popup-category-box .data-list-cate .content .hd::-webkit-scrollbar{
	display: none;
}

.popup-category-box .data-list-cate .content .hd li{
	padding: 0 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	width: 80px;
	height: 62px;
	background: #f5f6f7;
	position: relative;
	cursor: pointer;
	transition: all 0.4s;
}

.popup-category-box .data-list-cate .content .hd li span{
	font-size: 14px;
	line-height: 22px;
	color: #565656;
	display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.popup-category-box .data-list-cate .content .hd li:before{
	content: "";
	display: inline-block;
	vertical-align: middle;
	clear: both;
	width: 3px;
	height: 62px;
	background: #445566;
	position: absolute;
	top: 0;
	left: 0;
	display: none;
}

.popup-category-box .data-list-cate .content .hd li.on span{
	color: #334455;
}

.popup-category-box .data-list-cate .content .hd li.on:before{
	display: inline-block;
}

.popup-category-box .data-list-cate .content .bd{
	flex: 1;
	max-height: 268px;
	overflow-y: scroll;
	border-bottom: 12px solid #ffffff;
}

.popup-category-box .data-list-cate .content .bd li .boxs{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.popup-category-box .data-list-cate .content .bd li .boxs em{
	padding: 0 20px;
	display: inline-block;
	width: 80px;
	font-size: 14px;
	line-height: 18px;
	color: #565656;
	text-align: justify;
	margin: 22px 0;
}

.popup-category-box .data-list-cate .content .bd li .boxs p{
	padding: 12px 0;
	flex: 1;
	display: flex;
	flex-wrap: wrap;
	border-bottom: 1px solid #f6f8f8;
}

.popup-category-box .data-list-cate .content .bd li .boxs:nth-last-child(1) p{
	border-bottom: none;
}

.popup-category-box .data-list-cate .content .bd li .boxs p a{
	padding: 9px 11px;
	font-size: 14px;
	line-height: 14px;
	color: #565656;
	border-radius: 8px;
	background: #f6f8f8;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
	margin: 3px 5px;
}

.popup-category-box .data-list-cate .content .bd li .boxs p a:hover{
	color: #4262de;
	background: #eceffc;
}

.popup-category-box .data-list-cate .content .bd li .boxs:nth-of-type(odd) p{
	padding-top: 17px;
}

.popup-category-box .data-list-cate .content .bd li .boxs:nth-of-type(odd) p a{
	padding: 4px 11px;
	background: none;
}

.popup-category-box .popup-close{
	display: inline-block;
	width: 32px;
	height: 32px;
	overflow: hidden;
	cursor: pointer;
	position: absolute;
	top: -32px;
	right: -32px;
}

.popup-category-box .popup-close img{
	display: inline-block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* page-box-------------------------------------------------------------------------------------------- */

.page-box{
	padding: 40px 32px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-top: 1px solid #f3f3f3;
}

.page-box.NOBT{
	border-top: none;
}

ul.page-list{
	flex: 1;
	display: flex;
}

ul.page-list li{
	margin: 0 6px;
}

ul.page-list li a{
	display: inline-block;
	padding: 8px 18px;
	font-size: 14px;
	line-height: 14px;
	color: #666;
	background: #ffffff;
	border-radius: 15px;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

ul.page-list li a:hover{
	background: #eeeeee;
}

ul.page-list li.on a{
	background: #61687c;
	color: #ffffff;
}

ul.page-list li.on a:hover{
	background: #778899;
	border-radius: 12px;
}

ul.page-more{
	display: flex;
}

ul.page-more li a{
	padding: 9px 19px;
	display: flex;
	background: #ffffff;
	border-radius: 15px;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

ul.page-more li a img{
	display: inline-block;
	width: 8px;
	height: 12px;
}

ul.page-more li a:hover{
	background: #eeeeee;
}

/* company-like-------------------------------------------------------------------------------------------- */

.company-like .get-like{
	font-size: 14px;
	line-height: 14px;
	color: #808080;
	text-align: center;
	margin: 60px 0 30px 0;
}

.company-like .get-like img{
	display: inline-block;
	width: 12px;
	height: 12px;
	position: relative;
	top: 1px;
	margin-right: 4px;
}

.company-like .get-like:before{
	content: "";
	display: inline-block;
	vertical-align: middle;
	clear: both;
	width: 25px;
	height: 3px;
	background: url(../../images/2020/common/icon_like_l.png) no-repeat;
	-moz-background-size: 25px 3px;
	-webkit-background-size: 25px 3px;
	background-size: 25px 3px;
	position: relative;
	top: -1px;
	margin-right: 7px;
}

.company-like .get-like:after{
	content: "";
	display: inline-block;
	vertical-align: middle;
	clear: both;
	width: 25px;
	height: 3px;
	background: url(../../images/2020/common/icon_like_r.png) no-repeat;
	-moz-background-size: 25px 3px;
	-webkit-background-size: 25px 3px;
	background-size: 25px 3px;
	position: relative;
	top: -1px;
	margin-left: 7px;
}

.company-like .data-list-wiki li:nth-of-type(1){
	padding-top: 8px;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
}