a,a:hover{
	text-decoration: none;
}
img,a{
	border: none;
}
ul,li{
	padding: 0px;
	list-style: none;
	margin: 0px;
}
body{
	font-family:"微软雅黑","黑体","STHeiti","Microsoft YaHei";
	font-size: 16px;
	color: #5e5e5e;
}
.clear{
	clear: both;
}
.header{
	width:100%;
	background: #fff;
	position:fixed;
	top:0;
	left:0;
	z-index:999;
	padding:0px;
}
.header>.container{
	padding:15px 0px;
}
.head-top{
	height: 42px;
	background: #192d62;
	color: #fff;
}
.head-top a{
	color: #fff;
}
.status{
	display: inline;
	padding-right: 5px;
	
}
.status span{
	display: inline-block;
	padding:0px 10px;
	line-height: 42px;
}
.status span a{
	color: #fff;
}
.btn-all{
	text-align: right;
	font-size: 12px;
	padding-right: 20px;
	width: 250px;
	float: right;
	padding-top: 5px;
}
.f-search{
	color: #666;
	padding:0px 5px;
	display: block;
	border: 1px solid #113267;
	border-radius: 10px;
	-webkit-border-radius:10px;
	-moz-border-radius:10px;
	-o-border-radius:10px;
	background: #fff;
	height: 34px;
	padding-top: 5px;
}
.f-search input[type="text"]{
    width:180px;
    height:24px;
	display: inline;
	background: none;
	border: 0px;
	transition: all 0.5s;
}
.f-search button{
    width:34px;
    height:24px;
    background:none;
    text-align:center;
    color:#fff;
	line-height: 24px;
	display: inline;
	border: none;
	margin-top: -5px;
}
.f-search i{
	font-size:14px;
	color: #113267;
}
/*左侧logo*/
.logo-menu{
	background: url(../images/header-bg.jpg) no-repeat right bottom;
	background-size:auto 100%;
	width: 100%;
	padding:15px;
}
.header .left{
	width: 35%;
	float: left;
}
.header .left a img{
	height: 75px;
}

/*导航*/
.header .nav{
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
	height: 100%;
	width: 65%;
	float: right;
}
.header .navbar_nav{
	padding-left: 10%;
}
.header .navbar_nav>li{
	float:left;
	position: relative;
	display: block;
	width: 14.2%;
	line-height: 72px;
}
.header .navbar_nav>li:hover:after{
    width: 100%;
}
.header .navbar_nav>li>a{
	text-decoration: none;
	height: 100%;
	width: 100%;
	display: block;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
	color: #000;
	font-size: 18px;
	
}
.header .navbar_nav>li:hover>a{
	color: #192d62;
}
.header .navbar_nav>li.dropdown{
	display: inherit;
	position: relative;
}
.header .navbar_nav>li.dropdown>.dropdown_menu{
	display: none;
	position: absolute;
	z-index: 99999;
	top:64px;
	background: #fff;
	box-shadow: 0 15px 27px 0 rgba(167,165,165,0.38);
	width: 160px;
	left: -30%;
	border-top:2px solid #192d62;
}
.header .navbar_nav>li.dropdown>.dropdown_menu>li>a{
	display: block;
	width: 100%;
	font-size: 14px;
	color: #666;
	padding: 0 20px;
	line-height: 30px;
	text-align: center;
	background: #fff;
	margin-bottom: 2px;
}
.header .navbar_nav>li.dropdown:hover>.dropdown_menu{
	display: block;
	background: #f3f3f3;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
}
.header .navbar_nav>li.dropdown:hover>.dropdown_menu>li>a{
	color: #666;
}
.header .navbar_nav>li.dropdown:hover>.dropdown_menu>li>a:hover{
	background:#102f5a;
	width:100%;
	display:block;
	color: #fff;
}

/*白色背景的头部*/

#navToggle{
	display: none;
}

.m_nav{
	position: fixed;
	top: 0px;
	box-shadow: 0 15px 27px 0 rgba(167,165,165,0.38);
	width: 100%;
    height: 100%;
    background: #fff;
    transition: all ease 0.5s;
    -webkit-transition: all ease 0.5s;
	z-index: 1000000000;
    opacity: 1;
    visibility: visible;
    margin-top: 0;
    overflow-y: auto;
    transition: all .6s cubic-bezier(.77, 0, .175, 1) 0ms;
    top: 0;
    transform: translateX(100%);
}
.m_nav.open{
    transform: translateX(0);
}
.m_nav .top{
	height: 60px;
	padding: 20px;
	box-sizing: border-box;
}
.m_nav .top .closed{
	width: 30px;
	height: 30px;
	vertical-align: middle;
	float:right;
	cursor: pointer;
}
.m_nav>.ul{
	margin-top: 30px;
}
.m_nav>.ul>li{
	padding: 0 20px;
	border-bottom: 1px solid #f5f5f5;
	transform: translateY(0);
	-webkit-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition: all .6s cubic-bezier(.77, 0, .175, 1) 0ms;
    transition: all .6s cubic-bezier(.77, 0, .175, 1) 0ms;
    opacity: 0;
}
.m_nav.open>.ul>li{
	opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}
.m_nav>.ul>li:nth-child(1) {
    -webkit-transition: all .2s cubic-bezier(.77, 0, .175, 1) 0ms;
    transition: all .2s cubic-bezier(.77, 0, .175, 1) 0ms;
}
.m_nav>.ul>li:nth-child(2) {
    -webkit-transition: all .4s cubic-bezier(.77, 0, .175, 1) 0ms;
    transition: all .4s cubic-bezier(.77, 0, .175, 1) 0ms;
}
.m_nav>.ul>li:nth-child(3) {
    -webkit-transition: all .6s cubic-bezier(.77, 0, .175, 1) 0ms;
    transition: all .6s cubic-bezier(.77, 0, .175, 1) 0ms;
}
.m_nav>.ul>li:nth-child(4) {
    -webkit-transition: all .8s cubic-bezier(.77, 0, .175, 1) 0ms;
    transition: all .8s cubic-bezier(.77, 0, .175, 1) 0ms;
}
.m_nav>.ul>li:nth-child(5) {
    -webkit-transition: all 1.0s cubic-bezier(.77, 0, .175, 1) 0ms;
    transition: all 1.0s cubic-bezier(.77, 0, .175, 1) 0ms;
}
.m_nav>.ul>li:nth-child(6) {
    -webkit-transition: all 1.2s cubic-bezier(.77, 0, .175, 1) 0ms;
    transition: all 1.2s cubic-bezier(.77, 0, .175, 1) 0ms;
}
.m_nav>.ul>li:nth-child(7) {
    -webkit-transition: all 1.4s cubic-bezier(.77, 0, .175, 1) 0ms;
    transition: all 1.4s cubic-bezier(.77, 0, .175, 1) 0ms;
}
.m_nav>.ul>li:nth-child(8) {
    -webkit-transition: all 1.6s cubic-bezier(.77, 0, .175, 1) 0ms;
    transition: all 1.6s cubic-bezier(.77, 0, .175, 1) 0ms;
}
.m_nav>.ul>li>a{
	display: block;
	text-decoration: none;
	color: #333;
	font-size: 16px;
	height: 42px;
	line-height: 42px;
	width: 100%;
}
.m_nav>.ul>li>.dropdown_menu,.m_nav>.ul>li>.dropdown_menu>.dropdown2>.dropdown-menu2{
	display: none;
}
.m_nav>.ul>li.dropdown.active>.dropdown_menu,.m_nav>.ul>li>.dropdown_menu>.dropdown2.active>.dropdown-menu2{
	display: block;
}
.m_nav>.ul>li>.dropdown_menu>li>a{
	display: block;
	height: 50px;
	line-height: 50px;
	padding: 0 20px;
	box-sizing: border-box;
	border-bottom: 1px solid #f5f5f5;
	color: #333;
}
.m_nav>.ul>li>.dropdown_menu>li>a:last-child{
	border: none;
}

/*轮番图*/
.banner{
	position: relative;
}
#slider .banner-title{position: absolute; bottom: 68px; right: 5%;z-index:181;background: rgba(25,45,98,0.4); padding:15px;}
#slider .banner-title a{ font-size: 32px;font-weight: bold; color: #fff; text-shadow: 2px 2px 2px #000;}

.main,.focus,.news-media{
	width: 100%;
}


.main{
	width: 100%;
	padding:50px 0px;
	margin-top: 138px;
}
.lm-title{
	width: 180px;
	position: relative;
	left: 50%;
	margin-left: -90px;
	line-height: 64px;
	border-bottom: 2px solid #192d62;
	color: #192d62;
	font-size: 24px;
	text-align: center;
}
/*校区新闻*/
.news-con{
	margin-top: 30px;
}
.news-item{
	width: 100%;
	box-shadow: 0 0 20px #a1a1a1;
	-webkit-box-shadow:0 0 20px #a1a1a1;
	-o-box-shadow:0 0 20px #a1a1a1;
	-moz-box-shadow:0 0 20px #a1a1a1;
	background: #fff;
	margin-top: 30px;
}
.news-img{
	overflow: hidden;
}
.news-img,.news-img img{
	width: 100%;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
}
.news-img img:hover{
	transform: scale(1.5);
}
.news-title{
	line-height: 24px;
	height: 48px;
	margin-top: 15px;
	display: block;
	overflow: hidden;
	width: 100%;
	padding-left: 15px;
	padding-right: 15px;
	text-align: justify;
}
.news-title a{
	color: #000;
}
.news-title a:hover{
	color: #192d62;
}
.news-date{
	font-size: 14px;
	width: 100%;
	text-align: right;
	padding: 15px;
}
.news-more{
	width: 150px;
	position: relative;
	margin-top: 50px;
	border: 1px solid #192d62;
	border-radius: 15px;
	-webkit-border-radius:15px;
	-moz-border-radius:15px;
	-o-border-radius:15px;
	left: 50%;
	margin-left: -75px;
}
.news-more a{
	width: 100%;
	color: #192d62;
	display: block;
	line-height: 48px;
	text-align: center;
}
.news-more:hover{
	background: #192d62;
}
.news-more:hover  a{
	color: #fff;
}

/*校区党建*/
.xqdj{
	background: url("../images/xqdj-bg.jpg") no-repeat;
	background: auto 100%;
	margin-top: 60px;
	padding:50px 0px;
}
.xqdj .lm-title{
	border-bottom: 2px solid #c30c11;
	color: #c30c11;
	margin-top: -20px;
}
.xqdj-warp{
	margin-top: 30px;
}
.xqdj-top{
	margin-top: 15px;
}
.xqdj-img,.xqdj-img img{
	width: 100%;
}
.xqdj-main{
	padding:25px;
	background: #fff;
}
.xqdj-date{
	line-height: 32px;
	text-align: left;
	color: #c30c11;
	font-size: 14px;
}
.xqdj-title{
	font-size: 18px;
	line-height: 24px;
	height: 48px;
	overflow: hidden;
}
.xqdj-title a{
	color: #c30c11;
}
.xqdj-con{
	font-size: 14px;
	line-height: 24px;
	height: 72px;
	overflow: hidden;
	color: #a5a5a5;
}
.ckxq-btn{
	text-align: right;
	width: 100%;
}
.ckxq-btn a{
	line-height: 32px;
	font-size: 14px;
	color: #c30c11;
}
.xqdj-ul{
	padding-left: 50px;
}
.xqdj-item{
	width: 100%;
	margin-top: 15px;
	background: #fff;
	float: left;
}
.xqdj-item-img{
	width: 25%;
	float: left;
}
.xqdj-item-img img{
	width: 100%;
}
.xqdj-item-main{
	width: 75%;
	float: left;
	padding: 15px 30px;
}
.xqdj-item-date{
	font-size: 14px;
	color: #c30c11;
}
.xqdj-item-title{
	line-height: 42px;
	text-overflow:ellipsis;
	white-space: nowrap;
    overflow: hidden;
    text-align: justify;
	display: block;
	width: 100%;
}
.xqdj-item-title a{
	color: #000;
	font-weight: bold;
}
.xqdj-item-title a:hover{
	color: #c30c11;
}
.xqdj-item-con{
	line-height: 24px;
	font-size: 14px;
	height: 48px;
	overflow: hidden;
	color: #a5a5a5;
}

/*通知公告、校园服务*/
.notice-serve{
	margin-top: 50px;
}
.notice-title{
	font-size: 24px;
	color: #192d62;
}
.notice-item{
	width: 100%;
	border-bottom: 1px solid #929292;
	float: left;
	margin-top: 15px;
	padding-bottom: 10px;
}
.notice-item-title{
	line-height: 42px;
	padding:20px 0px;
	padding-right: 20px;
	text-overflow:ellipsis;
	white-space: nowrap;
    overflow: hidden;
    text-align: justify;
	display: block;
	width: 80%;
	float: left;
}
.notice-item-title a{
	color: #000;
}
.notice-item-date{
	width: 20%;
	float: left;
	background: #e49e08;
	text-align: center;
	padding:15px;
	color: #fff;
}
.notice-day{
	font-size: 20px;
	font-weight: bold;
}
.xyfw{
	padding-left: 50px;
}
.serve{
	background: url("../images/xyfw-bg.jpg") no-repeat center;
	background-size: 100% auto;
	width: 100%;
	padding:50px;
	margin-top: 50px;
}
.serve-ul{
	width: 100%;
	float: left;
}
.serve-li{
	width: 25%;
	float: left;
	padding:65px 0px;
	border-right: 1px solid rgba(255,255,255,0.6);
	border-bottom: 1px solid rgba(255,255,255,0.6);
	text-align: center;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
}
.serve-li:hover{
	background: rgba(255,255,255,0.2);
}
.serve-li:nth-child(4n){
	border-right: 0px;
}
.serve-li:nth-child(5),.serve-li:nth-child(6),.serve-li:nth-child(7),.serve-li:nth-child(8){
	border-bottom: 0px;
}
.serve-li span{
	display: block;
}
.serve-li a{
	color: #fff;
}

.footer{
	width: 100%;
	background: url("../images/footer-bg.jpg") no-repeat top center;
	background-size: 100% auto;
	padding-top: 250px;
}
.link1{
	border-right: 1px solid #fff;
}
.footer-title{
	font-size: 24px;
	color: #fff;
}
.footer-menu,.footer-menu2{
	margin-top: 15px;
}
.link2{
	padding-left: 50px;
}
.footer-menu li,.footer-menu2 li{
	line-height: 42px;
	width: 33.3%;
	float: left;
	text-overflow:ellipsis;
	white-space: nowrap;
    overflow: hidden;
    text-align: justify;
	display: block;
}
.footer-menu2 li{
	width: 25%;
}
.footer-menu li a,.footer-menu2 li a{
	color: #fff;
}
.bqinfo{
	width: 100%;
	background: rgba(0,36,112,0.7);
	line-height: 32px;
	text-align: center;
	color: #fff;
	padding-top: 15px;
	padding-bottom: 15px;
	margin-top: 30px;
}

@media(min-width:1600px){
	.header .container,.main>.container,.xqdj>.container,.notice-serve>.container,.footer>.container{
		width: 80%;
	}
}
@media(max-width:1599px){
	.header .container,.main>.container,.xqdj>.container,.notice-serve>.container,.footer>.container{
		width: 95%;
	}
}
@media(max-width:1440px){
	body{
		font-size: 14px;
	}
	.header .navbar_nav>li{
		line-height: 56px;
	}
	.header .navbar_nav>li.dropdown>.dropdown_menu{
		top:56px;
	}
	.header .navbar_nav>li.dropdown>.dropdown_menu{
		left:-27%;
	}
	.header .left a img{
		height: 72px;
	}
	.f-search{
		padding:2px;
	}
	.xqdj-item-img{
		width: 27%;
	}
	.xqdj-item-main{
		width: 73%;
		padding: 13px 30px;
	}
	.xqdj-item-title{
		line-height: 36px;
	}
	.notice-item-date{
		padding:5px 0px;
	}
	.notice-item-title{
		line-height: 32px;
		padding:10px 0px;
		padding-right: 20px;
	}
	.serve{
		margin-top: 30px;
	}
	.serve-li{
		padding:45px 0px;
	}
	.xqdj-ul,.xyfw{
		padding-left: 40px;
	}
	.footer{
		padding-top: 200px;
	}
}
@media(max-width:1280px){
	body{
		font-size: 14px;
	}
	.header .left a img{
		height: 56px;
	}
	.header .nav{
		padding-right: 20px;
	}
	.header .navbar_nav li a{
		padding:0px 8px;
		font-size: 14px;
	}
	.header .navbar_nav li{
		line-height: 48px;
	}
	
	.header .navbar_nav li.dropdown .dropdown_menu{
		width: 160px;
		top: 48px;
	}
	.header .navbar_nav>li:last-child .dropdown_menu{
		left: 0;
	}
	#slider .banner-title{bottom: 48px;}
	#slider .banner-title a{ font-size: 26px;}
	.lm-title{
		font-size: 18px;
	}
	.xqdj-item-img{
		width: 30%;
	}
	.xqdj-item-main{
		width: 70%;
		padding: 13px 30px;
	}
	.xqdj-ul,.xyfw{
		padding-left: 30px;
	}
	.xqdj-main{
		padding-top: 25px;
		padding-bottom: 25px;
	}
	.xqdj-con{
		margin-top: 15px;
	}
	.xqdj-title{
		margin-top: 15px;
	}
	.ckxq-btn{
		margin-top: 15px;
	}
	.footer{
		padding-top: 160px;
	}
	.footer-menu li,.footer-menu2 li{
		line-height: 38px;
	}
}
@media(max-width:1024px){
	.header .container,.nav>.container,.main>.container,.footer>.container,.bsh-kxyj>.container,.tdcy>.container,.links>.container{
		width: 100%;
	}
	.header .navbar_nav>li.dropdown>.dropdown_menu{
		left:-37%;
		width: 120px;
	}
	#slider .banner-title{bottom: 28px;}
	#slider .banner-title a{ font-size: 24px;}
	.footer{
		background-size: auto 100%;
	}
	.link1{
		border-right: 0px;
	}
	.footer-menu li{
		width: 25%;
	}
	.link2{
		margin-top: 30px;
	}
	.footer-menu li,.footer-menu2 li{
		line-height: 24px;
	}
	.link2{
		padding-left: 15px;
	}
}
@media screen and (max-width: 992px){
	.header>.container{
		padding-bottom: 15px;
	}
	.header #navToggle {
		height: 100%;
		padding: 9px 15px;
		margin-right: -45px;
		display: inline-block;
		float: right;
		background: #102f5a;
		height: 56px;
	}
	.header #navToggle span {
		position: relative;
		width: 25px;
		height: 1px;
		margin-top: 19px;
	}
	.header #navToggle span:before,
	.header #navToggle span:after {
		content: '';
		position: relative;
		width: 100%;
		height: 1px;
		left: 0;
	}
	.header #navToggle span,
	.header #navToggle span:before,
	.header #navToggle span:after {
		-webkit-transition: 0.3s;
		-moz-transition: 0.3s;
		-o-transition: 0.3s;
		transition: 0.3s;
		display: block;
		background: #b1e3ff;
	}
	.header #navToggle span:before {
		top: 8px;
	}
	.header #navToggle span:after {
		bottom: 10px;
	}
	.header #navToggle.open span:before {
		top: 10px;
		-webkit-transform: translateY(-11px) rotate(-45deg);
		-moz-transform: translateY(-11px) rotate(-45deg);
		-ms-transform: translateY(-11px) rotate(-45deg);
		-o-transform: translateY(-11px) rotate(-45deg);
		transform: translateY(-11px) rotate(-45deg);
	}
	.header #navToggle.open span:after {
		bottom: 12px;
		-webkit-transform: translateY(10px) rotate(45deg);
		-moz-transform: translateY(10px) rotate(45deg);
		-ms-transform: translateY(10px) rotate(45deg);
		-o-transform: translateY(10px) rotate(45deg);
		transform: translateY(10px) rotate(45deg);
	}
	.header #navToggle.open span {
		background: none;
	}
	.header #navToggle.open span:before,
	.header #navToggle.open span:after {
		background: #4f4f4f;
	}
	.header .navbar_nav{
		display: none;
	}
	.btn-all{
		display: none;
	}
}
@media(max-width:767px){
	.header .navbar_nav>li{
		line-height: 42px;
	}
	.header #navToggle {
		height: 100%;
		padding: 3px 15px;
		height:42px;
	}
	.header .left a img{
		height: 48px;
		margin-left: 0px;
		margin-top: -15px;
	}
	#slider .banner-title{
		display: none;
	}
	.main{
		margin-top: 120px;
	}
	.xqdj-ul{
		padding-left: 15px;
	}
	.xqdj{
		background-size: auto 100%;
	}
	.xqdj-item-con{
		display: none;
	}
	.xyfw{
		padding-left: 15px;
		margin-top: 30px;
	}
	.serve{
		background-size: auto 100%;
		padding:15px;
	}
	.serve-li span{
		height: 32px;
	}
	.serve-li{
		padding:20px 0px;
	}
}
@media(max-width:375px){
	.header .left a img{
		height: 32px;
	}
}

/*返回顶部*/
.cd-top {
  display: inline-block;
  height: 40px;
  width: 40px;
  position: fixed;
  bottom: 40px;
  right: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    -o-box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  /* image replacement properties */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  background: rgba(0,0,0, 0.6) url(../images/cd-top-arrow.svg) no-repeat center 50%;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
    z-index: 999999999999;
}
.cd-top.cd-is-visible {
  /* the button becomes visible */
  visibility: visible;
  opacity: 1;
}
.cd-top.cd-fade-out {
  opacity: .5;
}
.no-touch .cd-top:hover {
  background-color: #e86256;
  opacity: 1;
}
@media only screen and (min-width: 768px) {
  .cd-top {
    right: 20px;
    bottom: 20px;
  }
}
@media only screen and (min-width: 1024px) {
  .cd-top {
    height: 60px;
    width: 60px;
    right: 30px;
    bottom: 30px;
  }
	}
/*漂浮*/
.side{
	position:fixed;
	width:162px;
	right:0;
	top:50%;
	z-index:100;
	border-bottom:0;
	height: 256px;
}
.side-bg{
	background:url(../images/pf-bg.png) no-repeat;
	width: 162px;
	height: 256px;
	background-size: 100%;
	position: relative;
	z-index: 9999;
	animation:myfirst2 2s;
	-webkit-animation:myfirst2 2s;
}
@keyframes myfirst2
{
	from {
		right:-162px;
	}
	to {
		right:0;
	}
}

@-webkit-keyframes myfirst2 /* Safari and Chrome */
{
	from {
		opacity: 0;
		right:-162px;
	}
	to {
		opacity: 1;
		right:0;
	}
}
.side img{
	top: 40px;
	right: 0px;
	position: absolute;
	z-index: 999999;
	animation:myfirst 2s;
	-webkit-animation:myfirst 2s; /* Safari and Chrome */
}

@keyframes myfirst
{
	from {width:0px;}
	to {width:122px;}
}

@-webkit-keyframes myfirst /* Safari and Chrome */
{
	from {width:0px;}
	to {width:122px;}
}
.side-title{
	position: absolute;
	z-index: 999999;
	bottom: 30px;
	right: 10px;
	text-align: center;
	opacity: 0.8;
	animation:myfirst3 2s;
	-webkit-animation:myfirst3 2s;
}
@keyframes myfirst3
{
	from {bottom: -30px;}
	to {bottom: 30px;}
}

@-webkit-keyframes myfirst3 /* Safari and Chrome */
{
	from {bottom: -30px;}
	to {bottom: 30px;}
}
.side-title a{
	color: #fff;
	font-size: 14px;
}

@media(max-width:767px){
	.side{
		width:100px;
		height: 158px;
	}
	.side-bg{
		width: 100px;
		height: 158px;
	}
	@keyframes myfirst2
	{
		from {
			right:-100px;
		}
		to {
			right:0;
		}
	}

	@-webkit-keyframes myfirst2 /* Safari and Chrome */
	{
		from {
			opacity: 0;
			right:-100px;
		}
	}
	.side img{
		right: 10px;
		width: 68px;
		top:30px;
	}
	@keyframes myfirst
	{
		from {width:0px;}
		to {width:68px;}
	}

	@-webkit-keyframes myfirst /* Safari and Chrome */
	{
		from {width:0px;}
		to {width:68px;}
	}
	.side-title{
		bottom: 20px;
		width: 72px;
	}
	.side-title i{
		display: none;
	}
	.side-title a{
		font-size: 12px;
	}
	@keyframes myfirst3
	{
		from {bottom: -20px;}
		to {bottom: 20px;}
	}

	@-webkit-keyframes myfirst3 /* Safari and Chrome */
	{
		from {bottom: -20px;}
		to {bottom: 20px;}
	}
}