/*公共样式*/
*,
*:after,
*::before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;

}
body {
    font-family: Microsoft YaHei, sans-serif;
    font-size: 14px;
    color: #333;
    perspective: 200px;
}

a {
    color: #333;
}

a:hover {
    color: #333;
    text-decoration: none;
}

ul {
    list-style: none;
}

/*===model css====================*/
/*模块样式*/
img{
    margin-top: 18%;
    /*margin-left: 5%;*/
    width: 100%;
}
.p1{
    font-size: 32px;
    text-align: center;
    margin-top: -15%;
}
.p2{
    text-align: center;
    font-size: 18px;
    color: #848484;
    margin-top: 1%;
}
button{
    margin-top: 2%;
    width: 18%;
    background: #FF9403;
    margin-left: 41%;
}
@media (max-width:768px){
    img{
        width: 100%;
    }
    .p1{
        font-size: 20px;
    }
    .p2{
        font-size: 14px;
    }
    button{
        width: 25%;
        margin-left: 38%;
    }
}

