/*會員卡片*/
.memberCard {
    margin: 15px 15px 15px 15px;
    background-color: #212020;
    border: 1.7px solid #FFC200;
    border-radius: 20px;
    position:relative;
}

/*會員卡片上方空間*/
.memberCardTop {
    width: 100%;
    height: 80px;
}

/*會員卡片頭像*/
.memberAvatar {
    box-shadow: 0px 0px 0px 1.7px #FFC200;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    overflow: hidden;
}
    .memberAvatar img {
        width: 100%;
        height: 100%;
    }

/*會員卡片姓名*/
.memberCardName {
    width: calc(100% - 140px);
    height: 30px;
    position: absolute;
    left: 95px;
    top: 20px;
    color: white;
    font-weight: 900;
    font-size: 16pt;
}

/*會員卡片積分餘額區塊*/
.memberCardPointRemain {
    width: calc(100% - 95px);
    height: 30px;
    position: absolute;
    left: 95px;
    top: 55px;
    color: #FFA391;
    font-weight: 900;
    font-size: 11pt;
}
/*會員卡片積分名稱*/
.memberCardPointTitleLbl {
    font-size: 10pt;
}
/*會員卡片積分餘額*/
.memberCardPointRemainLbl {
    font-size: 12.5pt;
}
/*會員卡片齒輪*/
.memberCardSetting {
    position: absolute;
    top: 10px;
    right: 15px;
    color: white;
    font-size: 18pt;
    cursor: pointer;
}

/*會員卡片下方空間*/
.memberCardBot {
    width: 100%;
    height: 85px;
}

/*連結區塊*/
.linkContainer {
    margin: 15px 15px 15px 15px;
    position: relative;
    text-align:center;
}

/*連結*/
.linkItem {
    display: inline-block;
    width: 32%;
    vertical-align: top;
}
.linkItem a {
    color: black;
}
.linkItem label{
    line-height:1;
}

/*連結icon*/
.linkImg {
    color: black;
    font-size: 26pt;
}

/*熱門兌換商品*/
.popularContainer {
    margin: 15px 15px 80px 15px;
    position: relative;
}

.popularCatelog {
    margin-top: 12px;
}

.popularBar label{
    font-size: 16pt;
    font-weight:900;
}

.popularItem {
    background-color: white;
    border-radius: 10px;
    line-height: 1;
    overflow: hidden;
    width: 100%;
    cursor: pointer;
    margin-bottom: 6px;
}

.popularItemImg {
    display: inline-block;
    width: 150px;
    height: 150px;
}

    .popularItemImg img {
        width: 150px;
        height: 150px;
    }

.popularItemDetail {
    display: inline-block;
    position: relative;
    height: 150px;
    width: calc(100% - 160px);
    vertical-align: top;
    padding-left: 10px;
}

.popularItemTitle {
    font-size: 14pt;
    /*font-weight: 900;*/
    width: 100%;
    margin-top: 15px;
    color: black;
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 12px;
    line-height: 1.5;
}

.popularItemDesc {
    font-size: 12pt;
    font-weight: 900;
    color: #9D9E9D;
    height: 48px;
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 8px;
}

.popularItemPrice {
    font-size: 14pt;
    font-weight: 900;
    color: #F86C64;
    position: absolute;
    right: 10px;
    bottom: 10px;
}

.detailInfo {
    padding: 15px 15px 15px 15px;
    background-color: white;
    margin-bottom: 5px;
}

.detailTitle {
    color: #505559;
    font-size: 16pt;
    font-weight: 900;
    /*margin-bottom: 20px;*/
}

.detailSubTitle {
    color: #67686B;
    font-size: 11pt;
    font-weight: 900;
    margin-bottom: 15px;
}

.detailPrice {
    color: #F86C64;
    font-size: 18pt;
    font-weight: 900;
    /*height: 36px;*/
    text-align: right;
}
.detailNote {
    color: #676666;
    font-size: 14pt;
    font-weight: 900;
    /*height: 22px;*/
    text-align: right;
}