body, p, h1, h4, h5, h6, ul, li {
    padding: 0;
    margin: 0;
    border: 0;
}

li {
    list-style-type: none;
}

input{  
	background:none;  
	outline:none;  
	border:none;
    -webkit-appearance:none;
}

input:focus{   
	border:none;
}

::-webkit-scrollbar {
  display: none;
}

.tag {
    background-color: tomato;
    color: #ffffff;
    padding: 0 5px;
    font-size: 12px;
    border-radius: 2px;
}
h5 {
    font-size: 16px;
}

.span-btn {
    min-width: 80px;
    height: 29px;
    line-height: 29px;
    font-size: 13px;
    color: #f84440;
    text-align: center;
    padding: 0 9px;
    background: #fff;
    border-radius: 30px;
    position: relative;
  }
.span-btn:before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    border: 1px solid #f84440;
    top: 0;
    left: 0;
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    -webkit-transform-origin: left top;
    transform-origin: left top;
    border-radius: 60px;
    box-sizing: border-box;
  }