﻿@charset "utf-8";

/******************************************公共样式****************************************/
* {
	margin: 0;
	padding: 0;
}
html,body {
	font-family: "微软雅黑","Microsoft YaHei","HanHei SC","PingHei","PingFang SC","STHeitiSC-Light","Helvetica Neue","Helvetica","Arial";
	color: #333;
	background: #fff;
}
ul li,ol li {
	list-style: none;
}
a {
	text-decoration: none;
	outline: none;
	blr: expression(this.onFocus=this.blur());
	color: #333;
}
img {
	width: 100%;
	border: none;
	display: block;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
caption,th,td {
	font-weight: normal;
	text-align: left;
}
input,textarea,select,button {
	font-size: 100%;
	font-family: inherit;
	margin: 0;
	padding: 0;
	outline: none;
	/*appearance:none;
	-moz-appearance:none;
	-webkit-appearance:none;*/
}
label,button {
	cursor: pointer
}
textarea {
	white-space: pre;
	resize: none;
	border: 1px solid #ececec;
}
article,aside,figcaption,figure,footer,header,hgroup,nav,section,summary {
	display: block;
}
.clearfix:after {
	content: "";
	display: block;
	clear: both;
	height: 0;
	line-height: 0;
	visibility: hidden;
}
.clearfix {
	zoom: 1;
}
.fl {
	float: left;
}
.fr {
	float: right;
}
.boxSizing {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
}
.wrapper,.wrapper2{
	margin-left: auto;
	margin-right: auto;
	width: 96%;
	max-width: 1600px;
}
.wrapper2{
	max-width: 1200px;
}
.nav a{
	display: block;
	color: #fff;
}
.sub_banner img{
	display: block;
}
.bread_nav{
	padding: 20px 0;
	background: #ededed;
	color: #7f7f7f;
	text-align: center;
}
.bread_nav a{
	color: #7f7f7f;
	font-weight: bold;
}
.bread_nav span{
	background: url(/images/icon04.png) no-repeat left center/25px auto;
	padding-left: 30px;
}
#burger{
	display: none;
	position: absolute;
	top: 25px;
	right: 20px;
	width: 30px;
    height: 20px;
	cursor: pointer;
}
#burger span{
	width: 30px;
	height: 4px;
	background-color: #C9C9C9;
	display: block;
	margin-bottom: 4px;
	-webkit-transition: -webkit-transform 250ms, opacity 250ms;
	-moz-transition: -moz-transform 250ms, opacity 250ms;
	transition: transform 250ms, opacity 250ms;
}
#burger span:last-of-type{
	margin-bottom: 0;
}
#burger.on span:nth-child(1){
	transform: rotateZ(-45deg) translateX(-5px) translateY(6px);
}
#burger.on span:nth-child(2){
    opacity: 0;
    -webkit-transform: rotateZ(-90deg);
    -moz-transform: rotateZ(-90deg);
    -ms-transform: rotateZ(-90deg);
    -o-transform: rotateZ(-90deg);
    transform: rotateZ(-90deg);
}
#burger.on span:nth-child(3){
	transform: rotateZ(45deg) translateX(-5px) translateY(-6px);
}
.main{
	background: #f8f8f8;
	padding-bottom: 50px;
}
footer{
	background: #f2f1f1;
	overflow: hidden;
}
footer .wrapper{
	position: relative;
	padding-top: 50px;
}
footer .wechat{
	width: 200px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 0;
}
footer ul{
	margin-right: 300px;
}
footer li{
	float: left;
	margin-bottom: 40px;
}
footer li.row1{
	width:16.66%;
}
footer li.row2{
	width: 50%;
}
footer h6{
	font-size: 24px;
}
footer li a{
	display: inline-block;
	white-space: nowrap;
	margin-right: 10px;
}
footer li a:hover{
	text-decoration: underline;
}
/*幻灯片*/
.swiper-container {
    width: 100%;
    
}
.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    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;
}
.swiper-container-horizontal > .swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction{
	bottom: 0;
}
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet{
	margin: 0;
}
.swiper-pagination-bullet{
	float: left;
	width: 20%;
	height: 15px;
	border-radius: 0;
	opacity: 1;
	position: relative;
	background: #ffc971;
}
.swiper-pagination-bullet:nth-of-type(2){
	background: #ffb627;
}

.swiper-pagination-bullet:nth-of-type(3){
	background: #ff9505;
}

.swiper-pagination-bullet:nth-of-type(4){
	background: #e2711d;
}

.swiper-pagination-bullet:nth-of-type(5){
	background: #cc5803;
}
.swiper-pagination-bullet:before{
	content: "";
	display: none;
	position: absolute;
	top:-20px;
	left: 50%;
	margin-left: -5px;
	border-top: 10px transparent dashed;
	border-left: 10px transparent dashed;
	border-right: 10px transparent dashed;
	border-bottom: 10px #ffc971 solid;
}
.swiper-pagination-bullet:nth-of-type(2):before{
	border-bottom: 10px #ffb627 solid;
}
.swiper-pagination-bullet:nth-of-type(3):before{
	border-bottom: 10px #ff9505 solid;
}
.swiper-pagination-bullet:nth-of-type(4):before{
	border-bottom: 10px #e2711d solid;
}
.swiper-pagination-bullet:nth-of-type(5):before{
	border-bottom: 10px #cc5803 solid;
}
.swiper-pagination-bullet-active:before{
	display: block;
}
/*弹窗*/
.pop{
	display: none;
	position: fixed;
	z-index: 200;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	overflow-y: auto;
}
.pop_bg{
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(0,0,0,0.5);
}
.pop_content{
	/* display: none; */
	width: 100%;
	max-width: 760px;
	background: #fff;
	position: absolute;
	left: 50%;
	padding-bottom: 60px;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
}
.pop_close{
	position: absolute;
	top:15px;
	right:15px;
	width: 30px;
	cursor: pointer;
}
.pop_padd{
	padding: 40px 50px;
}
/* 首页主体*/
.main h3{
	padding-top: 70px;
	font-size: 70px;
	text-align: center;
	line-height: 100%;
}
.main h3 small{
	color: #fff;
	display: block;
	font-weight: 64px;
}
.company_intro{
	width:98%;
	max-width: 1010px;
	margin: 0 auto;
	text-align: center;
	margin-bottom: 50px;
}
.about_us li{
	float: left;
	width: 33.33%;
}
.about_us a{
	display: block;
	width: 90%;
	margin: 0 auto;
	border-radius: 10px;
	background: #fff;
}
.shadow{
	box-shadow: 0 0 10px #cccccc;
}
.about_us .img{
	height: 0;
	position: relative;
	overflow: hidden;
	padding-bottom: 59%;
	border-radius: 10px;
}
.about_us .img img{
	position: absolute;
	width: 100%;
	top: 0;
	left: 0;
}
.about_us .word{
	padding: 10px 20px;
}
.about_us .word p{
	line-height: 55px;
	font-size: 24px;
	padding-left: 20px;
	position: relative;
	white-space: nowrap;
}
.about_us .word p:before{
	content: "";
	display: inline-block;
	position: absolute;
	top: 50%;
	margin-top: -5px;
	left: 0;
	width: 10px;
	height: 10px;
	border-radius: 5px;
	background: #333;
}
.about_us .word p span{
	color: #ff6600;
	padding:0 10px;
	font-family: "impact";
}
.learn_more_btn{
	display: block;
	margin: 50px auto;
	width: 230px;
	height: 60px;
	line-height: 60px;
	text-align: center;
	border-radius: 10px;
	color: #fff;
	background: #ff6600;
}
.products_list li{
	float: left;
	width: 33.33%;
	height: 0;
	overflow: hidden;
	padding-bottom: 25%;
	position: relative;
}
.products_list li:nth-of-type(2n+1){
	background: #fff;
}
.products_list li:nth-of-type(2n){
	background: #efefef;
}
.products_list li img{
	position: absolute;
	width: auto;
	height: 100%;
	bottom: 0;
	right: 0;
}
.products_list li dl{
	position: absolute;
	top: 5%;
	left: 5%;
	font-weight: 100;
}
.products_list li dt{
	font-size: 40px;
	font-weight: bold;
}
.honor{
	background: #ff6600;
	padding: 80px;
	color: #fff;
}
.honor li{
	float: left;
	width: 33.33%;
	text-align: center;
}
.honor li div{
	display: inline-block;
	text-align: left;
	font-size: 40px;
	line-height: 100%;
	padding-left: 120px;
	background-image: url(/images/icon01.png);
	background-position: left center;
	background-size:110px auto;
	background-repeat:no-repeat ;
}
.honor li:nth-of-type(2) div{
	background-image: url(/images/icon02.png);
}
.honor li:nth-of-type(3) div{
	background-image: url(/images/icon03.png);
}
.honor li small{
	font-size: 25px;
	display: block;
}
.honor li b{
	font-size: 48px;
	display: block;
}
.main .news_list{
	margin-top: 70px;
}
.main .news_list li:nth-of-type(2n+1){
	float: left;
}
.main .news_list li:nth-of-type(2n){
	float: right;
}
.main .news_list li{
	width: 47%;
	position: relative;
	overflow: hidden;
	margin-bottom: 60px;
}
.main .news_list img{
	width: 280px;
	position: absolute;
	top: 0;
	left: 0;
}
.main .news_list .word{
	margin-left: 300px;
}
.main .news_list h5{
	font-size: 22px;
	width: 100%;
	white-space:nowrap;
	text-overflow: ellipsis;
}
.main .news_list .infor{
	font-size: 18px;
}
.more_btn{
	width: 60px;
	height: 20px;
	border-radius:7px;
	color: #fff;
	font-size: 15px;
	background: #ff6600;
	text-align: center;
	line-height: 20px;
	transition: all 0.5s;
}
.sub_main{
	padding: 65px 0;
}
.sub_main h3{
	font-size: 36px;
	font-weight: normal;
	margin-bottom: 30px;
}
.padd{
	padding:30px 20px;
}
.leader .fl{
	width: 60%;
}
.leader .fr{
	width: 40%;
}
.leader dl{
	float: left;
	width: 50%;
}
.leader dt{
	float: left;
	width: 55%;
	border-radius: 3px;
	overflow: hidden;
}
.leader dd{
	float: right;
	width: 40%;
}
.leader dd .big{
	font-size: 30px;
}
.leader dd b{
	color: #534ea8;
	font-size: 16px;
}
.leader dd:after{
	content: "";
	display: block;
	width: 10px;
	height: 45px;
	background: #534ea8;
}
.leader dl:first-of-type dd b{
	color: #ff0000;
}
.leader dl:first-of-type dd:after{
	background: #ff0000;
}
.leader h6{
	font-size: 30px;
	font-weight: normal;
	line-height: 110%;
	margin-bottom:15px;
}
.leader h6 small{
	font-size: 25px;
	display: block;
}
.leader{
	border-bottom: 30px solid #ededed;
	padding-bottom: 60px;
}
.more_infor_btn{
	display: block;
	width: 120px;
	font-weight: bold;
	border-bottom: 5px solid #333;
	position: relative;
	margin:40px auto 0 ;
	text-align: center;
}
.more_infor_btn:after{
	content: "";
	display: block;
	position:absolute;
	top: 125%;
	left:50%;
	margin-left: -10px;
	border-bottom: 10px transparent dashed;
	border-left: 10px transparent dashed;
	border-right: 10px transparent dashed;
	border-top: 10px #333 solid;
	
}
.sub_main .news_list li{
	background: #e6e6e6;
	border-radius: 5px;
	overflow: hidden;
	margin-bottom: 30px;
	padding:20px;
	cursor: pointer;
	transition: all 0.5s;
}
.sub_main .news_list li > div{
	position: relative;
}
.sub_main .news_list .img{
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	overflow: hidden;
	width: 330px;
	border-radius: 5px;
}
.sub_main .news_list .word{
	margin-left: 350px;
}
.sub_main .news_list h5{
	font-size: 30px;
	width: 100%;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.sub_main .news_list .infor{
	font-size: 16px;
	margin: 10px 0 7px;
}
.sub_main .news_list .details{
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp:4;
	overflow: hidden;
}
.sub_main .news_list .more_btn{
	float: right;
	margin-top: 20px;
	transition: all 0.5s;
}
.sub_main .news_list li:hover{
	background: #ff9505;
	box-shadow: 0 0 10px #acabab;
	color: #fff;
}
.sub_main .news_list li:hover .more_btn{
	background: #cc5803;
}
.quality_man .clearfix{
	margin-bottom: 20px;
}
.quality_man .clearfix div{
	width: 48%;
}
.contact_us > div{
	background: #ececec;
	border-radius: 10px;
	overflow: hidden;
	cursor: pointer;
	transition: all 0.5s;
}
.contact_us > div:hover{
	background: #ff9505;
	box-shadow: 0 0 10px #acabab;
	color: #fff;
}
.contact_us > div:hover h4 span{
	color: #ffc971;
}
.contact_us .row1{
	width: 49%;
	margin-bottom: 30px;
}
.contact_us .row2{
	width: 100%;
	padding:20px;
}
.contact_us h4{
	font-size: 34px;
}
.contact_us h4 span{
	color: #9f9f9f;
}
.contact_us_padd{
	padding: 30px 0;
	width: 90%;
	margin: 0 auto;
}
.contact_us small{
	font-weight: 100;
}
.contact_us p{
	white-space: nowrap;
}
.contact_us .row2 img{
	float: left;
	width: 49%;
}
.contact_us .row2 div{
	float: right;
	width: 48%;
}
.sub_list li{
	float: left;
	width: 25%;
	margin-bottom: 30px;
}
.sub_list a{
	width: 95%;
	display: block;
	margin: 0 auto;
	border-radius: 10px;
	overflow: hidden;
	background: #dedede;
	transition: all 0.5s;
}
.sub_list a:hover{
	background: #ff9505;
	box-shadow: 0 0 10px #acabab;
	color: #fff;
}
.sub_list a:hover .more_btn{
	background: #cc5803;
}
.sub_list h5{
	font-size: 34px;
	white-space: nowrap;
}
.sub_list .img{
	position: relative;
	height: 0;
	width: 100%;
	overflow: hidden;
	padding-top:75%;
}
.sub_list .img img{
	position: absolute;
	top: 0;
	left: 0;
	width:100%;
}
.main_bus h5{
	position: relative;
}
.main_bus .more_btn{
	position: absolute;
	top: 50%;
	margin-top: -10px;
	right:5%;
}
.main_bus p{
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp:6;
	overflow: hidden;
}
.select{
	margin-bottom: 60px;
	background: #ededed;
	border-radius: 10px;
	overflow: hidden;
}
.select > div{
	float: left;
	text-align: center;
	border-radius: 10px;
}
.select > div.on{
	background: #ff9505;
	color: #fff;
}
.select .row1.on .center{
	background-image:url(/images/icon05_on.png);
}
.select .row2.on .center{
	background-image:url(/images/icon06_on.png);
}
.select .row3.on .center{
	background-image:url(/images/icon07_on.png);
}
.select .row1{
	width: 26%;
}
.select .row2,.row3{
	width: 37%;
}
.select .center{
	display: inline-block;
	height: 75px;
	line-height: 75px;
	text-align: left;
	padding-left: 60px;
	background-image:url(/images/icon05.png);
	background-repeat:no-repeat ;
	background-position:left center;
	background-size:50px auto;
}
.select .row2 .center{
	background-image:url(/images/icon06.png);
}
.select .row3 .center{
	background-image:url(/images/icon07.png);
}
.select select{
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	/*以上三项,为清除select自带样式*/
	border: none;
	border-bottom: 1px solid #717171; 
	padding:0 25px 0 10px;
	background: url(/images/icon08.png) no-repeat right center/20px auto;
}

@media only screen and (min-width: 1600px){
	html,body {
		font-size:20px;
	}
}
@media only screen and (max-width: 1599px){
	.main h3{
		font-size: 60px;
	}
	.products_list li dt{
		font-size: 30px;
	}
	.honor li div{
		font-size: 30px;
	}
	.honor li small{
		font-size: 20px;
	}
	.honor li b{
		font-size: 35px;
	}
	.main .news_list img{
		width: 200px;
	}
	.main .news_list .word{
		margin-left: 210px;
	}
	.main .news_list .infor{
		font-size: 16px;
	}
	footer h6{
		font-size: 22px;
	}
	.sub_list h5{
		font-size: 30px;
	}
}
@media only screen and (max-width: 1599px) and (min-width: 1200px){
	html,body {
		font-size:18px;
	}
}
@media only screen and (min-width: 1200px){
	.logo{
		width: 370px;
	}
	.main .news_list .details{
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 3;
		overflow: hidden;
	}
}
@media only screen and (max-width: 1199px){
	html,body {
		font-size:16px;
	}
	.main h3{
		font-size: 50px;
	}
	.about_us .word p {
	    line-height: 50px;
	    font-size: 22px;
	}
	.honor{
		padding: 70px 0;
	}
	.honor li div{
		background-size:contain ;
		padding-left: 95px;
	}
	.main .news_list li{
		width: 100%;
	}
	footer li.row2{
		width: 100%;
	}
	.sub_main h3{
		font-size:33px;
	}
	.contact_us h4{
		font-size: 30px;
	}
	.sub_list h5{
		font-size: 25px;
	}
}
@media only screen and (min-width: 1024px){
	header{
		position: fixed;
		top: 0;
		left: 0;
		z-index: 100;
		width: 100%;
		padding: 30px 0;
		transition: all 0.5s;
	}
	header.on{
		background: #0f0604;
	}
	header .wrapper{
		position: relative;
	}
	.logo{
		width: 250px;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		left: 0;
	}
	.nav li{
		float: left;
		position: relative;
	}
	.first_nav{
		border-radius: 5px;
		padding: 15px 17px;
		overflow: hidden;
	}
	.first_nav.on,.first_nav:hover{
		color: #ffcc33;
		background: rgba(202,110,7,0.5);
	}
	.sec_nav{
		display: none;
		position: absolute;
		top: 100%;
		left: 50%;
		transform: translateX(-50%);
	}
	.sec_nav a{
		color: #ffcc33;
		background: rgba(202,110,7,0.5);
		line-height:40px;
		width: 150px;
		text-align: center;
	}
	.sec_nav a:hover{
		font-weight: bold;
	}
}
@media only screen and (max-width: 1023px){
	#burger{
		display: block;
	}
	header{
		background:#0f0604;
		position: relative;
		padding: 10px 0;
	}
	.nav{
		display: none;
		border-top: 1px solid #f5bc2c;
		position: absolute;
		z-index: 100;
		top: 100%;
		left: 0;
		width: 100%;
		background:#0f0604;
	}
	.nav .first_nav{
		line-height: 40px;
		text-indent: 20px;
		border-bottom: 1px solid #f5bc2c;
	}
	.nav .sec_nav{
		display: none;
	}
	.nav .sec_nav a{
		line-height: 30px;
		text-indent: 30px;
		border-bottom: 1px dotted #f5bc2c;
	}
	.sub_main h3{
		font-size:30px;
	}
	.sub_main .news_list h5{
		font-size: 25px;
	}
	.sub_main .news_list .img{
		width: 250px;
	}
	.sub_main .news_list .word {
	    margin-left: 270px;
	}
	.contact_us h4{
		font-size: 25px;
	}
	.sub_list h5{
		font-size: 20px;
	}
}
@media only screen and (max-width: 960px){
	.about_us li{
		width: 100%;
		margin-bottom: 20px;
	}
	.products_list li{
		width: 50%;
	}
	.honor li{
		width: 100%;
		margin-bottom: 40px;
	}
	footer li.row1{
		width: 33.33%;
	}
	.leader .fl{
		margin-bottom: 20px;
	}
	.leader .fl,.leader .fr{
		width: 100%;
	}
	.sub_main .news_list h5{
		font-size: 20px;
	}
	.sub_main .news_list .img{
		width: 200px;
	}
	.sub_main .news_list .word {
	    margin-left: 220px;
	}
	.sub_list li{
		width: 33.33%;
	}
}
@media only screen and (max-width: 768px) {
	footer .wechat{
		position: static;
		margin-top: 30px;
		transform: none;
	}
	footer ul{
		margin: 0;
	}
	.sub_main .news_list .img{
		position: static;
		height: auto;
		width: 100%;
	}
	.sub_main .news_list .word{
		margin: 20px 0 0;
	}
	.sub_main .news_list h5{
		white-space: normal;
	}
	.select .row1,.select .row2,.select .row3{
		width: 100%;
		border-bottom: 1px solid #ff9505;
	}
}
@media only screen and (max-width: 640px) {
	.main h3{
		font-size: 40px;
		padding-top: 50px;
	}
	.products_list li{
		width: 100%;
		padding-bottom: 50%;
	}
	.main .news_list img{
		position:static;
		width: 100%;
		margin-bottom: 10px;
	}
	.main .news_list .word{
		margin: 0;
	}
	.main .news_list li{
		margin-bottom: 30px;
	}
	.main .news_list h5{
		white-space: normal;
	}
	.pop_padd{
		padding: 20px 30px;
	}
	.quality_man .clearfix div{
		width: 100%;
	}
	.contact_us h4{
		font-size: 20px;
	}
	.contact_us .row1,.contact_us .row2 div{
		width: 100%;
	}
	.contact_us .row2 img{
		width: 100%;
		margin-bottom: 20px;
	}
	.sub_list li{
		width:50%;
	}
}
@media only screen and (max-width: 480px) {
	.logo{
		width: 240px;
	}
	.more_infor_btn{
		margin-top: 0;
	}
	.sub_main{
		padding: 40px 0;
	}
	.about_us a{
		width: 95%;
	}
	.sub_main h3{
		font-size: 25px;
	}
	.padd{
		padding:15px 10px;
	}
	.leader dl{
		width: 100%;
		margin-bottom: 10px;
	}
	.pop_padd{
		padding: 10px 20px;
	}
	.pop_close{
		top: 8px;
		right: 8px;
		width: 20px;
	}
	.sub_list li{
		width:100%;
	}
}


/*弹窗*/
.pop {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 100;
    overflow-y: auto;
}

.pop_bg {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.5);
}

.pop_content {
    display: none;
    width: 100%;
    max-width: 760px;
    background: #fff;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    padding-top: 55px;
}

.pop_close {
    position: absolute;
    z-index: 2;
    top: 10px;
    right: 10px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    background: url(../images/icon11.png) no-repeat center center/contain;
    text-indent: -9999px;
    overflow: hidden;
}

.pop_content h4 {
    width: 85%;
    margin: 0 auto 30px;
    font-size: 30px;
}

.pop_content p {
    width: 85%;
    margin: 0 auto;
    font-size: 20px;
}