.fn-clear:after {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
}

nav {
	width: 100%;
	min-width: 1200px;
	height: 100px;
	background: #1b1b1b;
}

nav .nav {
	width: 1200px;
	height: 100px;
	margin: 0 auto;
}

nav .nav .logo {
	height: 100px;
	line-height: 100px;
	float: left;
}

nav .nav .logo img {
	vertical-align: middle;
}

    nav .nav .nav_list {
        float: left;
        height: 100px;
        
    }

    nav .nav .nav_list > ul > li {
        float: left;
        position: relative;
        padding: 0px 15px;
        height: 100px;
    }

nav .nav .nav_list>ul>li>a {
	color: #ffffff;
	font-size: 16px;
	line-height: 120px;
	position: relative;
}

nav .nav .nav_list>ul>li:hover>a {
	color: #fb0300;
}

nav .nav .nav_list>ul>li:hover>a::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 2px;
	background: #fb0300;
	bottom: -30px;
}

nav .nav .nav_list>ul>li.active>a {
	color: #fb0300;
}

nav .nav .nav_list>ul>li.active>a::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 2px;
	background: #fb0300;
	bottom: -30px;
}

nav .nav .nav_list>ul>li>div {
	position: absolute;
	top: 100px;
	width: 230px;
	padding: 25px 30px;
	display: none;
	z-index: 88;
	background: rgba(255, 255, 255, .77);
	box-shadow: 0px 0px 5px rgba(0, 0, 0, .2);
}

nav .nav .nav_list>ul>li>div ul {
	padding: 0px;
	margin: 0px;
}

nav .nav .nav_list>ul>li>div ul li a {
	padding: 12px 0px;
	display: block;
	color: #333333;
	font-size: 15px;
}

nav .nav .nav_list>ul>li>div ul li a:hover {
	color: #fb0300;
	background: url(../img/ico/nav_r.png) no-repeat;
	background-position-y: center;
	background-position-x: right;
}

nav .nav .nav_list>ul>li:hover div {
	display: block;
}
.search {
    float: right;
    height: 100px;
    width: 70px;
    line-height: 100px;
    position: relative;
    cursor: pointer;
    background: url('../img/search.png') center no-repeat;
    background-position-y: 50px;
}
    .search div {
        position: absolute;
        width: 320px;
        padding-left: 30px;
        right: 0px;
        background: rgba(255, 255, 255, .77);
        top: 100px;
        display: none;
    }
        .search div input {
            border: none;
            height: 30px;
            border-radius: 2px;
            padding-left: 10px;
            outline: none;
        }
        .search div button {
            padding: .3em 1em;
            border-radius: 2px;
        }
        .search div input::-webkit-input-placeholder{
            color: #999;
            font-size: 14px;
        }

        
        .search div input:-moz-placeholder{
            color: #999;
            font-size: 14px;
        }

       
        .search div input:-ms-input-placeholder {
            color: #999;
            font-size: 14px;
        }
    .search:hover > div {
        display:block;
    }
    /*banner*/
    .banner .swiper-slide .banner_t {
        position: absolute;
        width: 1200px;
        left: 50%;
        margin-left: -600px;
        margin-top: 100px;
    }

.banner .swiper-slide .banner_t p:first-child {
	opacity: 0;
}

.banner .swiper-slide-active .banner_t p:first-child {
	-webkit-animation: b_t_up 2s ease-out;
	-ms-animation: b_t_up 2s ease-out;
	-o-animation: b_t_up 2s ease-out;
	-moz-animation: b_t_up 2s ease-out;
	animation: b_t_up 2s ease-out;
	animation-fill-mode: forwards;
	animation-delay: 0.5s;
	-webkit-animation-delay: 0.5s;
	-moz-animation-delay: 0.5s;
	-ms-animation-delay: 0.5s;
	-o-animation-delay: 0.5s;
	-webkit-animation-fill-mode: forwards;
	-o-animation-fill-mode: forwards;
	-moz-animation-fill-mode: forwards;
	-ms-animation-fill-mode: forwards;
}

@keyframes b_t_up {
	from {
		opacity: 0;
		transform: translateY(-50px);
	}
	to {
		opacity: 1;
		transform: translateY(0px);
	}
}

@-moz-keyframes b_t_up {
	from {
		opacity: 0;
		transform: translateY(-50px);
	}
	to {
		opacity: 1;
		transform: translateY(0px);
	}
}

@-ms-keyframes b_t_up {
	from {
		opacity: 0;
		transform: translateY(-50px);
	}
	to {
		opacity: 1;
		transform: translateY(0px);
	}
}

@-webkit-keyframes b_t_up {
	from {
		opacity: 0;
		transform: translateY(-50px);
	}
	to {
		opacity: 1;
		transform: translateY(0px);
	}
}

.banner .swiper-pagination span {
	border-radius: initial;
	width: 30px;
	height: 4px;
	background: #FFFFFF;
	opacity: 1;
}

.banner .swiper-pagination span.swiper-pagination-bullet-active {
	background: #f60201;
}

.banner .swiper-button-prev {
	width: 100px;
	height: 50px;
	background: url(../img/index/ico/left.png) no-repeat;
	background-position-x: center;
	background-position-y: 0px;
	left: 8%;
}

.banner .swiper-button-next {
	width: 100px;
	height: 50px;
	background: url(../img/index/ico/right.png) no-repeat;
	background-position-x: center;
	background-position-y: 0px;
	right: 8%;
}

.banner .swiper-button-prev:hover,
.banner .swiper-button-next:hover {
	background-position-y: -50px;
}

.pub_t {
	width: 100%;
	padding-bottom: 23px;
	position: relative;
}

.pub_t::before {
	position: absolute;
	content: '';
	width: 153px;
	height: 1px;
	background: #dcdcdc;
	bottom: 0px;
}

.pub_t span {
	color: #333;
	font-size: 28px;
    font-weight:bold;
}

.pub_t font {
	color: #333333;
	font-size: 16px;
	margin-left: 20px;
}

.more {
	width: 125px;
	height: 36px;
	display: block;
	border-radius: 60px;
	border: 1px solid #bfbfbf;
	text-align: center;
	line-height: 37px;
	color: #666;
	font-size: 14px;
	transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
    margin-top:40px;
}

.more:hover {
	background: #f60201;
	color: #FFFFFF;
	border: 1px solid #f60201;
}

.page {
	margin-top: 50px;
}
#AspNetPager1 input[type=text]{
	width:70px !important;
}
#AspNetPager1 input{
	width:auto;
	padding: .5em 0.5em;
    height: 37px;
    position: relative;
    display: inline-block !important;
    /* padding: .5em 1em; */
    text-decoration: none;
    line-height: 1.2;
    color: #333333;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 0;
    margin-bottom: 5px;
	margin-right:5px;
	text-align: center;
}

.back_team {
	width: 100%;
	height: 120px;
	background: #eeeeee;
	margin-top: 50px;
}

.back_team div p {
	margin: 0px;
	padding: 0px;
	color: #454545;
	font-size: 16px;
	width: 100%;
}

.back_team div span {
	margin: 0px;
	padding: 0px;
	color: #666666;
	font-size: 14px;
	width: 100%;
	display: block;
	overflow: hidden;
	text-overflow: ellipsis; //文本溢出显示省略号
	white-space: nowrap; //文本不会换行（单行文本溢出）
}

.back_team div a {
	display: block;
	padding: 35px 100px;
}

.back_team div:first-child {
	float: left;
	min-width: 308px;
	height: 100%;
}

.back_team div:first-child a {
	background: url(../img/ico/nav_r1_1.png) no-repeat;
	background-position-x: 55px;
	background-position-y: center;
	max-width: 312px;
}

.back_team div:first-child:hover a {
	background: url(../img/ico/nav_r_1.png) no-repeat;
	background-position-x: 55px;
	background-position-y: center;
}

.back_team div:first-child:hover a p,
.back_team div:first-child:hover a span {
	color: #fb0300;
}

.back_team div:nth-child(2) {
	display: inline-block;
	width: 150px;
	margin: 0 auto;
	margin-left: 100px;
}

.back_team div:nth-child(2) a {
	display: block;
	padding: 47px 20px;
	font-size: 16px;
	color: #333333;
	background: url(../img/news/back.png) no-repeat left
}

.back_team div:nth-child(2) a:hover {
	color: #fb0300;
	background: url(../img/news/back2.png) no-repeat left;
}

.back_team div:nth-child(3) {
	float: right;
	text-align: right;
	max-width: 312px;
	min-width: 308px;
	height: 100%;
}

.back_team div:nth-child(3) a {
	background: url(../img/ico/nav_r1.png) no-repeat;
	background-position-x: 241px;
	background-position-y: center;
	color: #fb0300;
	/*padding: 35px 20px;*/
}

.back_team div:nth-child(3):hover a p,
.back_team div:nth-child(3):hover a span {
	color: #fb0300;
}

.back_team div:nth-child(3):hover a {
	background: url(../img/ico/nav_r.png) no-repeat;
	background-position-x: 241px;
	background-position-y: center;
}


/*侧边栏*/

.izl-rmenu {
	position: fixed;
	right: 0;
	margin-right: 20px;
	top: 35%;
	padding-bottom: 20px;
	/*background: url(../images/r_b.png) 0px bottom no-repeat;*/
	z-index: 999;
}

@media only screen and (min-width: 100px) and (max-width:1500px) {
	.izl-rmenu {
		top: 10%;
	}
}

.izl-rmenu .btn {
	width: 72px;
	height: 73px;
	margin-bottom: 1px;
	cursor: pointer;
	position: relative;
}

.izl-rmenu .btn-qq {
	background: url(../img/ico/msg.png) center no-repeat;
	background-color: #f11823;
	border-radius: 3px;
}

.izl-rmenu .btn-qq:hover {
	background-color: #f11823;
}

.izl-rmenu a.btn-qq,
.izl-rmenu a.btn-qq:visited {
	background: url(../img/ico/msg.png) center no-repeat;
	background-color: #f11823;
	text-decoration: none;
	display: block;
}

.izl-rmenu .btn-wx {
	background: url(../img/ico/qrcode.png) center no-repeat;
	background-color: #f11823;
	border-radius: 3px;
}

.izl-rmenu .btn-wx:hover {
	background-color: #f11823;
}

.izl-rmenu .btn-wx .pic {
	position: absolute;
	left: -165px;
	top: -13px;
	display: none;
	width: 160px;
	height: 160px;
	max-width: inherit;
	background-color: #f11823;
	padding: 20px;
}

.izl-rmenu>div:first-child {
	background: url(../img/ico/tel.png) center no-repeat;
	background-color: #f11823;
	border-radius: 3px;
}

.izl-rmenu .btn-phone {
	background: url(../img/ico/phone.png) center no-repeat;
	background-color: #f11823;
	border-radius: 3px;
}

.izl-rmenu .btn-phone:hover {
	background-color: #f11823;
}

.izl-rmenu .btn-phone .phone {
	background-color: #f11823;
	position: absolute;
	width: 177px;
	left: -178px;
	top: 0px;
	height: 53px;
	line-height: 53px;
	text-indent: 1em;
	color: #FFF;
	font-size: 18px;
	/* text-align: center; */
	/* display: none; */
	/*padding: 20px 0px 0px 10px;*/
	border-radius: 3px;
}

.izl-rmenu .btn-top {
	background: url(../img/ico/top.png) center no-repeat;
	background-color: #f11823;
	display: none;
	border-radius: 3px;
}

.izl-rmenu .btn-top:hover {
	background-color: #f11823;
}
.ft {
    margin-top: 0px;
}
.ft h1{
    font-size:15px;
    margin-bottom:0px;
}
    .ft p {
        margin:0px
    }