| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- @charset "UTF-8";
- .search{
- background: #F2F2F2;
- height: 70px;
- line-height: 70px;
- margin-top: -5px;
- text-align: center;
- }
- .search input{
- width: 80%;
- text-align: center;
- height: 35px;
- font-size: 15px;
- border: 2px solid #E6E6E6;
- border-radius: 40px;
- }
- .search input::-webkit-input-placeholder{
- outline: none;
- background:url("../imgs/icon_search.svg") no-repeat 40%;
- background-size: 26px 26px;
- }
- .search input::-moz-placeholder{
- outline: none;
- background:url("../imgs/icon_search.svg") no-repeat 40%;
- background-size: 26px 26px;
- }
- .search input:-ms-input-placeholder{
- outline: none;
- background:url("../imgs/icon_search.svg") no-repeat 40%;
- background-size: 26px 26px;
- }
- .search input:focus{
- outline: none;
- background:url("../imgs/icon_search.svg") no-repeat 40%;
- background-size: 26px 26px;
- }
- .content{
- padding: 0 4%;
- color: #8A8A8A;
- }
- .content p:nth-child(1){
- color: #333333;
- font-size: 1.1em;
- line-height: 1.5em;
- letter-spacing: 0.04em;
- }
- .content p:nth-child(2){
- /*font-size: 0.8em;*/
- line-height: 1.4em;
- letter-spacing: 0.05em;
- }
- .content .bottom{
- height: 60px;
- line-height: 60px;
- }
|