@font-face {
	font-family: 'bodonixt-webfont';
	src: url('font/bodonixt-webfont.eot');
	src: url('font/bodonixt-webfont.eot?#iefix') format('embedded-opentype'),
		 url('font/bodonixt-webfont.woff2') format('woff2'),
		 url('font/bodonixt-webfont.woff') format('woff'),
		 url('font/bodonixt-webfont.ttf') format('truetype'),
		 url('font/bodonixt-webfont.svg#abril_fatfaceregular') format('svg');
	font-weight: normal;
	font-style: normal;
}
*{
	margin: 0;
	padding: 0;
}
html,body{
	color: #000;
	width: 100%;
	height: 100%;
	font-family: arial,"microsoft yahei";
	background: #fff;
}
a{
	text-decoration: none;
	display: inline-block;
}
img{
	border: none;
}
ul,li{
	list-style-type: none;
}
input,textarea,button{
	border: none;
	outline: none;
	-webkit-appearance: none;
	border-radius: 0;
	font-family: arial,"microsoft yahei";
}
.nav{
	width: 100%;
	height: 80px;
	/*background: #fff;*/
	/*position: fixed;*/
	top: 0;
	left: 0;
	z-index: 1000;
}
.hamburger{
	width: 47px;
	cursor: pointer;
	position: fixed;
	top: 40px;
	left: 30px;
	z-index: 1500;
}
.hamburger:hover .hamburger-top{
	-webkit-transform: translateY(2px);
	-moz-transform: translateY(-2px);
	-ms-transform: translateY(-2px);
	transform: translateY(-2px);
}
.hamburger:hover .hamburger-bottom{
	-webkit-transform: translateY(2px);
	-moz-transform: translateY(2px);
	-ms-transform: translateY(2px);
	transform: translateY(2px);
}
.hamburger-click:hover .hamburger-top{
	-webkit-transform: translateY(0) rotate(45deg);
	-moz-transform: translateY(0) rotate(45deg);
	-ms-transform: translateY(0) rotate(45deg);
	transform: translateY(0) rotate(45deg);
}
.hamburger-click:hover .hamburger-bottom {
	-webkit-transform: translateY(0) rotate(-45deg);
	-moz-transform: translateY(0) rotate(-45deg);
	-ms-transform: translateY(0) rotate(-45deg);
	transform: translateY(0) rotate(-45deg);
}
.hamburger-item{
	width: 47px;
	height: 6px;
	background: #eb4f38;
	border-radius: 3px;
	margin-bottom: 6px;
	-webkit-transform-origin: left center;
	-moz-transform-origin: left center;
	-ms-transform-origin: left center;
	-o-transform-origin: left center;
	transform-origin: left center;
	-webkit-transition: .3s;
	-moz-transition: .3s;
	-ms-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
}
.hamburger-click .hamburger-top{
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
	margin-bottom: 15px;
}
.hamburger-click .hamburger-middle{
	opacity: 0;
}
.hamburger-click .hamburger-bottom{
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.nav-title{
	font-size: 30px;
	line-height: 50px;
	color: #3e3a39;
	margin: 35px 30px 0 0;
	float: right;
}
.nav-wrap{
	width: 100%;
	height: 100%;
	position: fixed;
	/*background: rgba(255,255,255,.95);*/
	top: 0;
	left: 0;
	z-index: 1100;
	display: none;
}
.nav-wrap-bg{
	width: 100%;
	height: 100%;
	position: absolute;
	background: rgba(255,255,255,.95);
	top: 0;
	left: 0;
}
.nav-content{
	width: 500px;
	margin-left: 255px;
	margin-top: 75px;
	-webkit-transition: -webkit-transform 0.3s cubic-bezier(0.7, 0, 0.36, 0.63);
	-moz-transition: -moz-transform 0.3s cubic-bezier(0.7, 0, 0.36, 0.63);
	-ms-transition: -ms-transform 0.3s cubic-bezier(0.7, 0, 0.36, 0.63);
	-o-transition: -o-transform 0.3s cubic-bezier(0.7, 0, 0.36, 0.63);
	transition: transform 0.3s cubic-bezier(0.7, 0, 0.36, 0.63);
	-webkit-transform: perspective(600px) rotateX(10deg) translateY(-10%);
	-moz-transform: perspective(600px) rotateX(10deg) translateY(-10%);
	-ms-transform: perspective(600px) rotateX(10deg) translateY(-10%);
	-o-transform: perspective(600px) rotateX(10deg) translateY(-10%);
	transform: perspective(600px) rotateX(10deg) translateY(-10%);
}
.nav-content-on{
	-webkit-transform: perspective(600px) rotateX(0deg) translateY(0);
	-moz-transform: perspective(600px) rotateX(0deg) translateY(0);
	-ms-transform: perspective(600px) rotateX(0deg) translateY(0);
	-o-transform: perspective(600px) rotateX(0deg) translateY(0);
	transform: perspective(600px) rotateX(0deg) translateY(0);
}
.nav-content-close{
	-webkit-transform: perspective(600px) rotateX(-10deg) translateY(10%);
	-moz-transform: perspective(600px) rotateX(-10deg) translateY(10%);
	-ms-transform: perspective(600px) rotateX(-10deg) translateY(10%);
	-o-transform: perspective(600px) rotateX(-10deg) translateY(10%);
	transform: perspective(600px) rotateX(-10deg) translateY(10%);
}
.nav-item{
	width: 152px;
	border-bottom: 1px #dcdcdc solid;
}
.nav-item:nth-last-child(1){
	border: none;
}
.nav-item a{
	width: 500px;
	font-size: 28px;
	line-height: 140px;
	color: rgb(62, 58, 57);
	-webkit-transition: color .3s;
	-moz-transition: color .3s;
	-ms-transition: color .3s;
	-o-transition: color .3s;
	transition: color .3s;
}
.nav-item:hover a{
	color: #ff452f;
}
.nav-content:hover .nav-item:not(:hover) a{
	color: rgb(207,207,207);
}

/*outlook*/
.outlook{
	margin: 160px auto 0;
	width: 1065px;
	height: 516px;
	position: relative;
	margin-top: 76px;
}
.outlook-wrap{
	overflow: hidden;
	display: none;
	position: absolute;
	top: 0;
	left: 0;
}
.outlook-item{
	padding: 25px 22px 0;
	width: 213px;
	height: 195px;
	/*background: #e9f9ff;*/
	border-radius: 2px;
	margin: 0 49px 38px;
	float: left;
	font-size: 14px;
	line-height: 25px;
	color: #595757;
	background: url(img/dot.png) #e9f9ff no-repeat 10px 10px;
}
.outlook-num{
	width: 1065px;
	margin: 7px auto 0;
	text-align: center;
}
.outlook-radius{
	width: 14px;
	height: 14px;
	background: #ffdfdf;
	border-radius: 100%;
	display: inline-block;
	margin: 0 10px;
	cursor: pointer;
	*display: inline;
	zoom: 1;
	-webkit-transition: background .3s;
	-moz-transition: background .3s;
	-ms-transition: background .3s;
	transition: background .3s;
}
.outlook-this{
	background: #eb4f38;
}
.mob-move{
	text-align: center;
	margin: 20px auto;
	display: none;
}
.mob-move span{
	width: 120px;
	font-size: 16px;
	line-height: 36px;
	display: inline-block;
	border: 1px #eb4f38 solid;
	border-radius: 3px;
	cursor: pointer;
}
/*comment*/
.comment{
	width: 644px;
	margin: 135px auto 69px;
	margin-top: 69px;
}
.comment-top{
	padding-bottom: 20px;
	border-bottom: 1px #e5e5e5 solid;
	font-size: 18px;
	line-height: 25px;
	color: #595757;
}
.comment-top span{
	width: 24px;
	height: 26px;
	background: url(img/comment-icon.png) no-repeat;
	display: inline-block;
	vertical-align: top;
	margin-right: 8px;
}
.comment-wrap{
	padding-top: 45px;
}
.comment-name{
	width: 219px;
	font-size: 14px;
	line-height: 25px;
	padding: 6px 10px;
	border: 1px #d2d2d2 solid;
	border-radius: 2px;
}
.comment-content{
	margin-top: 15px;
	width: 622px;
	height: 144px;
	font-size: 14px;
	line-height: 25px;
	padding: 6px 10px;
	border: 1px #d2d2d2 solid;
	border-radius: 2px;
	resize: none;
}
.comment-tj{
	text-align: right;
	margin-top: 28px;
}
.comment-submit{
	width: 101px;
	height: 37px;
	border: 1px #eb4f38 solid;
	background: #fff;
	border-radius: 2px;
	font-size: 16px;
	color: #eb4f38;
	cursor: pointer;
	border-radius: 3px;
}
.comment-submit:hover{
	background: #eb4f38;
    color: #fff;
    -moz-transition: background 1s;
	-webkit-transition: background 1s;
	-o-transition: background 1s;
	-ms-transition: background 1s;
	transition: background 1s;
}

/*reply*/
.reply{
	width: 644px;
	margin: 0 auto 129px;
	border-top: 1px #e5e5e5 solid;
}
.reply-item{
	padding-top: 38px;
	overflow: hidden;
	border-bottom: 1px #e5e5e5 solid;
}
.reply-head{
	width: 50px;
	height: 50px;
	border-radius: 100%;
	overflow: hidden;
	float: left;
}
.reply-head img{
	width: 100%;
	vertical-align: top;
}
.reply-right{
	margin-left: 15px;
	width: 575px;
	float: left;
	padding-bottom: 15px;
}
.reply-right > p,.reply-second-right > p{
	font-size: 14px;
	line-height: 25px;
}
.reply-nt{
	padding: 15px 0;
	margin-bottom: 8px;
}
.reply-name{
	font-size: 14px;
	line-height: 25px;
}
.reply-time{
	font-size: 12px;
	line-height: 25px;
	color: #a9a9a9;
}
.reply-bottom{
	margin-top: 24px;
	text-align: right;
}
.reply-bottom span{
	height: 27px;
	line-height: 27px;
	font-size: 14px;
	cursor: pointer;
	display: inline-block;
	*display: inline;
	zoom: 1;
}
.reply-off{
	padding-left: 36px;
	background: url(img/zan-f.png) no-repeat;
}
.reply-on{
	padding-left: 36px;
	background: url(img/zan-t.png) no-repeat;
}
.reply-hf{
	margin-left: 10px;
	padding-left: 36px;
	background: url(img/reply-icon.png) no-repeat;
}
.reply-second{
	margin-top: 18px;
	/*padding-left: 15px;*/
}
.reply-second-item{
	overflow: hidden;
	border-top: 1px #e5e5e5 solid;
	padding: 22px 0 10px;
}
.reply-second-right{
	width: 493px;
	float: left;
	margin-left: 15px;
}

/*company*/
.company{
	width: 1255px;
	margin: 179px auto 0;
	overflow: hidden;
	margin:70px auto 0
}
.company-item{
	width: 223px;
	height: 220px;
	padding: 4px;
	border: 1px #e5e5e5 solid;
	margin: 0 40px 38px;
	float: left;
	/* display: none; */
}
.company-item a{
	color: #595757;
}
.company-item:hover{
	    -webkit-box-shadow: 0 1px 3px rgba(0,0,0,.15);
    -moz-box-shadow: 0 1px 3px rgba(0,0,0,.15);
    box-shadow: 0 1px 3px rgba(0,0,0,.15);
}
.company-logo{
	background: #f7f8f8;
	text-align: center;
}
.company-logo img{
	max-width: 100%;
	vertical-align: top;
}
.company-item h3{
	font-size: 16px;
	line-height: 25px;
	color: #3e3a39;
	margin-top: 7px;
}
.company-item p{
	font-size: 14px;
	line-height: 25px;
	color: #595757;
	margin-top: 12px;
}
.company-item p span:hover{
	color: #ff452f;
	text-decoration: underline;
}

/*text*/
.load{
	/*display: none;*/
	width: 100%;
	height: 100%;
	background: url(img/load.gif) rgba(255,255,255,1) center no-repeat;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 3000;
	background-size: 30px;
}
.text{
	width: 900px;
	margin: 120px auto 0;
}
.text-content{

}
.text-content h2{
	font-size: 25px;
	line-height: 42px;
	color: #eb4f38;
	padding-left: 10px;
}
.text-content  i{
	width: 9px;
	height: 42px;
	background: #eb4f38;
	margin-right: 24px;
	vertical-align: top;
	display: inline-block;
	*display: inline;
	zoom: 1;
}
.text-content-head{
	display: inline-block;
	width: 853px;
	*display: inline;
	zoom: 1;
}
.text-content p{
	margin-left: 33px;
	font-size: 16px;
	line-height: 35px;
	padding: 34px 0 50px;
	border-bottom: 1px #e5e5e5 solid;
}
.text-content p > span{
	display: block;
	height: 20px;
}
.text-commentator{
	padding-top: 74px;
	margin-left: 33px;
}
.text-commentator-title{
	font-size: 16px;
	line-height: 20px;
}
.text-commentator-title i{
	width: 24px;
	height: 20px;
	vertical-align: top;
	margin-right: 10px;
	background: url(img/people.png) no-repeat;
	display: inline-block;
	*display: inline;
	zoom: 1;
}
.text-commentator-wrap{
	margin-top: 35px;
}
.text-commentator-item{
	margin-bottom: 50px;
	/*height: 48px;*/
}
.text-commentator-item p{
	font-size: 16px;
	line-height: 35px;
	color: #212121;
}
.text-commentator-top{
	margin-bottom: 17px;
}
.text-commentator-img{
	width: 50px;
	height: 50px;
	border-radius: 100%;
	overflow: hidden;
	margin-right: 20px;
	vertical-align: middle;
	display: inline-block;
}
.text-commentator-img img{
	width: 100%;
	vertical-align: top;
}
.text-commentator-name{
	margin-right: 20px;
	font-size: 16px;
	font-weight: bold;
	line-height: 50px;
}
.text-commentator-company{
	font-size: 14px;
	line-height: 50px;
}
.text-share{
	margin-top: 97px;
	text-align: center;
}
.text-share li{
	width: 30px;
	height: 30px;
	border-radius: 100%;
	margin: 0 10px;
	cursor: pointer;
	display: inline-block;
	*display: inline;
	zoom: 1;
}
.text-wx{
	background: url(img/wx-icon.png) #f64d4d center no-repeat;
	position: relative;
}
.text-wb{
	background: url(img/wb-icon.png) #f64d4d center no-repeat;
}
.text-xx{
	background: url(img/xx-icon.png) #f64d4d center no-repeat;
}
.text-wx canvas{
	width: 100px;
	position: absolute;
	display: none;
	left: -112px;
    bottom: -35px;
    padding: 5px;
}
.text-wx:hover canvas{
	display: block;
}
.text-wb a{
	width: 100%;
	height: 100%;
	display: inline-block;
}
.page{
	width: 100%;
	background: #fff;
	position: fixed;
	bottom: 0;
	z-index: 1500;
}
.page-wrap{
	padding: 20px 30px;
	overflow: hidden;
}
.page-prev{
	/*width: 530px;*/
	max-width: 530px;
	height: 25px;
	font-size: 14px;
	line-height: 25px;
	color: #000;
	background: url(img/text-prev.png) left no-repeat;
	padding-left: 30px;
	float: left;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	text-align: left;
}
.page-next{
	/*width: 530px;*/
	max-width: 530px;
	height: 25px;
	font-size: 14px;
	line-height: 25px;
	color: #000;
	background: url(img/text-next.png) right no-repeat;
	padding-right: 30px;
	float: right;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	text-align: right;  	
}


/*events*/
.events{
	padding-top: 60px;
	width: 100%;
	height: -webkit-calc(100% - 140px);
	height: calc(100% - 140px);
	position: relative;
}
.events-prev{
	width: 24px;
	height: 48px;
	cursor: pointer;
	background: url(img/events-prev.png) rgba(255,255,255,.5) no-repeat;
	position: absolute;
	top: 50%;
	left: 0;
	margin-top: -24px;
	z-index: 500;
}
.events-next{
	width: 24px;
	height: 48px;
	cursor: pointer;
	background: url(img/events-next.png) rgba(255,255,255,.5) no-repeat;
	position: absolute;
	top: 50%;
	right: 0;
	margin-top: -24px;
	z-index: 500;
}
.events-wrap{
	width: 100%;
	height: 100%;
	position: relative;
	background: #ccc;
	overflow: hidden;
}
.events-item{
	width: 44%;
	height: 100%;
	position: absolute;
	z-index: 100;
	-webkit-transition: left .5s,background-size .5s;
	-moz-transition: left .5s,background-size .5s;
	-ms-transition: left .5s,background-size .5s;
	-o-transition: left .5s,background-size .5s;
	transition: left .5s,background-size .5s;
}
.events-content{
	padding-left: 2.6%;
	width: 27%;
	height: 100%;
	position: relative;
	-webkit-transition: width .3s;
	-moz-transition: width .3s;
	-ms-transition: width .3s;
	-o-transition: width .3s;
	transition: width .3s;
}
.events-number{
	font-family: 'bodonixt-webfont';
	display: block;
	font-style: normal;
	font-size: 100px;
	/*line-height: 140px;*/
	color: #fff;
	margin-bottom: 25px;
	padding-top: 95px;
}
.events-content h2{
	font-size: 25px;
	line-height: 35px;
	font-weight: normal;
	color: #fff;
	opacity: 1;
}
.events-content h2 a{
	color: #fff;
}
.events-content .opacity0{
	opacity: 0;
}
.events-content .opacity1{
	-webkit-transition: opacity .5s;
	-moz-transition: opacity .5s;
	-ms-transition: opacity .5s;
	-o-transition: opacity .5s;
	transition: opacity .5s;
	opacity: 1;
}
.events-content p{
	font-size: 16px;
	line-height: 35px;
	color: #fff;
	position: absolute;
	left: 10.65%;
	bottom: 125px;
	bottom: 9%;
	display: none;
}
.events-content p a{
	color: #fff;
}
.events-content p a span:hover{
	color: #ff452f;
}
.events-show{
	padding-left: 9.65%;
	width: 77%;
}
.events-show h2{
	font-size: 40px;
	line-height: 65px;
}
.events-show p{
	display: block;
	opacity: 0;
}
.events-animate{
	opacity: 1 !important;
	-webkit-animation: ani .5s linear;
	-moz-animation: ani .5s linear;
	animation: ani .5s linear;
}
@-webkit-keyframes ani{
	0%{opacity: 0;}
	100%{opacity: 1;}
}
@-moz-keyframes ani{
	0%{opacity: 0;}
	100%{opacity: 1;}
}
@keyframes ani{
	0%{opacity: 0;}
	100%{opacity: 1;}
}


.events-bg1{
	background: url(img/events/1.jpg) center no-repeat;
	background-size: 120%;
}
.events-bg2{
	background: url(img/events/2.jpg) center no-repeat;
	background-size: 120%;
}
.events-bg3{
	background: url(img/events/3.jpg) center no-repeat;
	background-size: 120%;
}
.events-bg4{
	background: url(img/events/4.jpg) center no-repeat;
	background-size: 120%;
}
.events-bg5{
	background: url(img/events/5.jpg) center no-repeat;
	background-size: 120%;
}
.events-bg6{
	background: url(img/events/6.jpg) center no-repeat;
	background-size: 120%;
}
.events-bg7{
	background: url(img/events/7.jpg) center no-repeat;
	background-size: 120%;
}
.events-bg8{
	background: url(img/events/8.jpg) center no-repeat;
	background-size: 120%;
}
.events-bg9{
	background: url(img/events/9.jpg) center no-repeat;
	background-size: 120%;
}
.events-bg10{
	background: url(img/events/10.jpg) center no-repeat;
	background-size: 120%;
}
.events-bg11{
	background: url(img/events/11.jpg) center no-repeat;
	background-size: 120%;
}
.events-bg12{
	background: url(img/events/12.jpg) center no-repeat;
	background-size: 120%;
}
.events-item:hover{
	background-size: 130%;
}
.events-item:nth-child(1):hover{
	background-size: 120%;
}


/*events-mob*/
.events-mob{
	width: 90%;
	margin: 40px auto;
	display: none;
}
.events-mob-wrap{
	margin-bottom: 5%;
	border-radius: 2px;
	    -webkit-box-shadow: 0 4px 3px rgba(0,0,0,.25);
    -moz-box-shadow: 0 4px 3px rgba(0,0,0,.25);
    box-shadow: 0 4px 3px rgba(0,0,0,.25);
	overflow: hidden;
	position: relative;
}
.events-mob-wrap > img{
	width: 100%;
	vertical-align: top;
}
.events-mob-wrap > i{
	font-style: normal;
	font-size: 20px;
	line-height: 30px;
	text-align: center;
	color: #fff;
	width: 30px;
	height: 30px;
	background: #2d4059;
	position: absolute;
	top: 0;
	left: 0;
}
.events-mob-cont{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	 display: -webkit-box;
	 display: -ms-flexbox;
	 display: -webkit-flex;
	 display: flex;
	 -webkit-box-pack: center;
	 -ms-flex-pack: center;
	 -webkit-justify-content: center;
	 justify-content: center;
	 -webkit-box-align: center;
	 -ms-flex-align: center;
	 -webkit-align-items: center;
	 align-items: center;
}
.events-mob-cont p{
	font-size: 18px;
	line-height: 28px;
	color: #fff;
	width: 70%;
	/*margin: 0 auto;*/
	text-align: center;
}
.events-mob-cont p a{
	color: #fff;
}

.events-mob-wrap:nth-child(1) i{
	background: #2d4059;
}
.events-mob-wrap:nth-child(2) i{
	background: #920000;
}
.events-mob-wrap:nth-child(3) i{
	background: #f07b3f;
}
.events-mob-wrap:nth-child(4) i{
	background: #ffd460;
}
.events-mob-wrap:nth-child(5) i{
	background: #ffbb00;
}
.events-mob-wrap:nth-child(6) i{
	background: #920000;
}
.events-mob-wrap:nth-child(7) i{
	background: #f07b3f;
}
.events-mob-wrap:nth-child(8) i{
	background: #ffd460;
}
.events-mob-wrap:nth-child(9) i{
	background: #ffd460;
}
.events-mob-wrap:nth-child(10) i{
	background: #ffbb00;
}
.events-mob-wrap:nth-child(11) i{
	background: #2d4059;
}
.events-mob-wrap:nth-child(12) i{
	background: #920000;
}
@media screen and (min-width: 640px) and (max-width: 1500px) {
	.nav-item a{
		line-height: 110px;
	}
	.events-number{
		font-size: 100px;
		line-height: 100px;
		padding-top: 40px;
	}
	.events-content h2{
		font-size: 18px;
		line-height: 30px;
	}
	.events-show h2 {
		font-size: 30px;
		line-height: 45px;
	}
	.events-content p{
		font-size: 14px;
		line-height: 28px;
	}
	.events {
		padding-top: 20px;
		height: -webkit-calc(100% - 100px);
		height: calc(100% - 100px);
	}
}
@media screen and (max-width: 640px) {
	html,body{
		min-height: 300px;
	}
	body{
		min-width: 320px;
	}
	.nav{
		position: static;
		height: auto;
	}
	.nav-soy{
		width: 100%;
		height: 0;
		/*position: fixed;
		background: #fff;
		top: 0;
		left: 0;
		z-index: 1500;*/
	}
	.nav-title{
		float: none;
		text-align: center;
		margin: 55px auto 0;
		font-size: 20px;
		line-height: 30px;
	}
	.hamburger{
		top: 18px;
		left: 15px;
	}
	.hamburger-item {
		width: 34px;
		height: 4px;
		margin-bottom: 5px;
	}
	.hamburger-click .hamburger-top{
		margin-bottom: 11px;
	}
	.nav-content{
		width: 80%;
		margin: 80px auto;
		position: absolute;
		top: 50%;
		left: 10%;
		margin-top: -185px;
	}
	.nav-item{
		width: 100%;
		text-align: center;
	}
	.nav-item a{
		width: 100%;
		font-size: 16px;
		line-height: 70px;
	}

	/*outlook*/
	.outlook{
		margin: 40px auto 0;
		width: 90%;
		height: auto;
	}
	.outlook-wrap{
		position: static;
	}
	.outlook-item{
		width: 90%;
		margin: 0 0 20px;
		padding: 20px 5%;
		font-size: 16px;
		height: auto;
	}
	.outlook-num{
		display: none;
	}
	.mob-move{
		display: block;
	}

	/*comment*/
	.comment{
		width: 90%;
		margin: 60px auto 120px;
	}
	.comment-name{
		width: 50%;
	}
	.comment-content{
		width: -webkit-calc(100% - 22px);
		width: calc(100% - 22px);
		height: 90px;
	}
	.comment-tj{
		margin-top: 15px;
	}

	/*reply*/
	.reply{
		width: 90%;
		margin: 0 auto 130px;
	}
	.reply-head{
		width: 40px;
		height: 40px;
	}
	.reply-right{
		width: -webkit-calc(100% - 60px);
		width: calc(100% - 60px);
		margin-left: 20px;
	}
	.reply-nt{
		padding: 10px 0;
	}
	.reply-bottom span{
		height: 20px;
		line-height: 20px;
	}
	.reply-off,.reply-hf,.reply-on{
		background-size: 20px;
		padding-left: 28px;
	}
	.reply-second-right{
		width: -webkit-calc(100% - 60px);
	}

	/*company*/
	.company{
		width: 90%;
		margin: 40px auto 50px;
	}
	.company-item{
		width: 97%;
		height: auto;
		margin: 0 0 25px;
	}
	.company-item h3{
		font-size: 20px;
	}

	/*text*/
	.text{
		width: 90%;
		margin: 75px auto 0;
	}
	.text-content h2{
		padding-left: 15px;
		font-size: 20px;
		line-height: 30px;
	}
	.text-content h2 i{
		width: 7px;
		height: 30px;
		margin-right: 8px;
		margin-left: -15px;
	}
	.text-content-head{
		width: auto;
	}
	.text-content p{
		width: 90%;
		margin: 0 auto;
		font-size: 16px;
		line-height: 28px;
		padding: 15px 5% 30px;
	}
	.text-commentator{
		padding-top: 40px;
		width: 90%;
		margin: 0 auto;
	}
	.text-commentator-top{
		min-height: 40px;
	}
	.text-commentator-img{
		width: 40px;
		height: 40px;
		margin-right: 10px;
		float: left;
	}
	.text-commentator-name{
		margin-right: 10px;
		line-height: 24px;
	}
	.text-commentator-company{
		 line-height: 24px;
	}
	.text-commentator-item p{
		line-height: 28px;
	}
	.text-share{
		margin-top: 50px;
		display: none;
	}
	/*.page{
		display: none;
	}*/
	.page-prev{
		width: 57px;
		text-overflow: clip;
		white-space: normal;
	}
	.page-next{
		width: 57px;
		text-overflow: clip;
		white-space: normal;
		text-align: left;
		 height: 25px;
    	overflow: hidden;
	}

	/*events*/
	.events{
		display: none;
	}
	.events-mob{
		display: block;
	}
	.kk{
		height: 20px;
		display: block;
	}
}