//commom.css文件
.clearfix::after{
content: "";
display: block;
clear: both;
}
.right{
float: right;
}
.left{
float: left;
}
.btn{
border: 1px solid #00B38A;
background-color: transparent;
color: #00b38a;
}
.btn:hover{
background-color: #00B38A;
color: #fff;
}
//reset.css文件
*{
padding:0 ;
margin:0 ;
}
p,h1,h2,h3,h4,h5,h6,ol,li,ul{
padding:0 ;
margin:0 ;
}
a{
text-decoration:none;
color:inherit;
}
ol,ul {
list-style: none;
}
input,textarea,button,select{
border: none;
}
input:focus,textarea:focus,button:focus,select:focus{
outline: none;
outline-offset: 0;
}
h1,h2,h3,h4,h5{
font-weight: normal;
margin: 0;
}
img{
display: block;
width: 100%;
}