body {
    padding: 0;
    margin: 0;
    background-color: #f7f7f7;
}

* {
    list-style: none;
}

/* 头部 */
.header {
    width: 100%;
    height: 142px;
    background-color: rgb(255, 159, 0);
    position: relative;
}

.goods_title {
    color: #ffffff;
    font-weight: bold;
    font-size: 27px;
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 10;
}

.header img {
    height: 142px;
    width: 142px;
    position: absolute;
    right: 0;
    top: 0;
    opacity: 0.5;
}
.footer_right{
	text-align:right;
}
/* 商品信息 */
.goods_content {
    width: 100%;
    padding: 20px 50px;
    box-sizing: border-box;
}

.goods_content ul {
    width: 100%;
    padding: 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap
}

.goods_content ul li {
    width: 22%;
    height: 450px;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    box-shadow: 0 5px 5px #f1f1f1;
    margin-bottom: 20px;
}

.goods_content ul li img {
    width: 100%;
    max-height: 60%;
}

.goods_info {
    width: 100%;
    flex: 1;
    /* background-color: red; */
    padding: 0 20px;
    box-sizing: border-box;
    position: relative;
}

.goods_info p {
    color: rgb(255, 94, 0);
    font-size: 20px;
    font-weight: bold;
    /* background-color: red; */

    margin: 0;
}

.goods_info span {
    font-size: 17px;
    padding: 10px 0;
}

.add_cart {
    width: 160px;
    height: 40px;
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: rgb(255, 159, 0);
    display: flex;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.add_cart img {
    width: 20px !important;
    height: 20px;
}

.add_cart span {
    color: #ffffff;
    margin-left: 5px;
}

.toCartpage{
    width: 80px;
    height: 80px;
    position:fixed;
    bottom: 50px;
    right: 50px;
    /* opacity: 0.9; */
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border:1px solid rgb(255, 159, 0);
    opacity: 0.8;
    cursor: pointer;
}
.toCartpage img{
    width: 60px;
    height: 60px;
    transform: translateX(5%);
}