﻿@charset "utf-8";
 
.InnerMain {
    background-color: transparent;
}

.list_user_integral {
    width: 100%;
    height: 80px;
    background-color: #ffffff;
    border-radius: 5px;
    padding:0 30px;
    box-sizing:border-box;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.list_integral_left {
    display: flex;
    align-items: center;
}

.list_my_integral {
    font-size: 20px;
    font-weight: 700;
    color: #333333;
}
.list_integral_left .list_icon {
    width: 24px;
    height: 21px;
    background-image: url(/Areas/Home/Views/Home/PC/1/Themes/image/icon.png);
    background-repeat: no-repeat;
    background-position: -40px -201px;
    margin-right:10px;
}
}
.list_my_integral .num {
    color: #EA1100;
}

.list_integral_text {
    font-size: 18px;
    color: #333333;
    margin-left:40px;
    cursor:pointer;
}

.list_integral_text .I_Icon{
    color:#E4E4E4;
    font-size: 18px;
}

.list_integral_text p{
    margin:0;
    padding:0;
}

.list_integral_text p:last-child .I_Icon{
    color: #ff6400;
}

.list_integral_text p:first-child{
    display:inline-block;
}

.list_integral_text p:last-child{
    display:none;
}

.list_integral_text.active p:first-child{
    display:none;
}

.list_integral_text.active p:last-child{
    display:inline-block;
}

.list_integral_right {
    width: 120px;
    height: 35px;
    background: #ff6400;
    border-radius: 35px;
    font-size: 14px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/*商品列表*/
.integral_product_item{
    margin:0 -10px;
}

.integral_product_item li{
    display:inline-block;
    margin:10px;
    width: 285px;
    height: 350px;
    background: #ffffff;
    border-radius: 5px;
    overflow:hidden;
    box-sizing:border-box;
}
.integral_product_item li>a{
    width:100%;
    height:100%;
    display: block;
    padding:25px 0;
    box-sizing:border-box;
}
.integral_product_img {
    width: 210px;
    height: 210px;
    overflow:hidden;
    margin:0 auto;
}
.integral_product_img img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:all 0.6s ease;
}
.integral_product_item li:hover img {
    transform: scale(1.2);
}
.integral_product_text {
    padding: 0 30px;
    box-sizing: border-box;
    text-align: center;
}
.integral_product_title {
    font-size: 22px;
    color: #414141;
    margin-top: 30px;
    margin-bottom: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.integral_product_num {
    font-size: 20px;
    color: #ff433b;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}