@import "reset.css";
*{
    margin: 0;
    padding: 0;
    border: 0;
}
html{
    font-size: 20px;
}
body{
    background: url(../images/bg.jpg) top center no-repeat;
    background-attachment: fixed;
    -webkit-text-size-adjust: none;
    overflow-x: hidden;
    color:#000;
    padding-bottom: 30px;
}
/* part */
.part {
    width: 96%;
    height: auto;
    margin: 10px auto;
}
.part ul {
    width: 100%;
}
.part li {
    float: left;
    width: 40%;
    margin: 2% 5%;
    height: auto;
    position: relative;
}
.part li img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}
.part li p {
    width: 30px;
    height: 25px;
    background: url(../images/horn1.png) top center no-repeat;
    background-size: cover;
    position: absolute;
    top: 6%;
    left: 76%;
    /*opacity: 0;*/
    display: none;
}
.part li p span {
    display: block;
    width: 100%;
    height: 100%;
    background-position: top left;
    background-repeat: no-repeat;
    background-image: ;
    background-size: cover;
}
/* horn */
.horn-animate {
    -webkit-animation:hornImgChange 1.2s 0s ease infinite;
}
@-webkit-keyframes hornImgChange{
0%{ background-image:url(../images/horn1.png);}
40%{ background-image:url(../images/horn2.png);}
80%{ background-image:url(../images/horn3.png);}
100%{ background-image:url(../images/horn1.png);}
}