/*
img{
max-width:100%;
}
body{
min-width:1330px;
}
*/


/*-------------------心形组件样式----------------------*/
.heart {
            display: block;
            position: absolute;
            width: 13px;
            height: 13px;
            transform: rotate(-45deg);
        }
        
        .heart:before {
            content: "";
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 50%;
            background-color: inherit;
            border-radius: 50%;
        }
        
        .heart:after {
            content: "";
            position: absolute;
            width: 100%;
            height: 100%;
            top: -50%;
            left: 0;
            background-color: inherit;
            border-radius: 50%;
        }