@import "page.css";
/*news main*/
.news-main{
    padding: 80px 0;
}
.news-main-wrapper{
    max-width: 90%;
    margin: auto;
    justify-content: space-between;
    align-items: flex-start;
}
.news-left{
    width: 70%;
}
.news-item{
    justify-content: space-between;
    align-items: stretch;
    border-bottom: 1px dashed #CCC;
    padding-bottom: 25px;
    margin-bottom: 25px;

}
.news-item-left{
    width: 47%;
    border-radius: 10px;
    overflow: hidden;
}
.news-item-left img{
    width: 100%;
}
.news-item-right{
    width: 50%;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
}
.news-item-title{
    font-size: 24px;
}
.news-item-desc{
    padding-top: 25px;
    font-size: 16px;
    line-height: 1.8em;
    font-weight: lighter;
    flex-grow: 1;
}
.news-item-info{
    justify-content: flex-end;
    font-size: 15px;
}
.info-date{
    color: #666;
}
.info-tag{
    color: #666;
}
.info-tag a{
    display: inline-block;
}
a:hover{
    color: var(--green);
}

.news-right{
    width: 25%;
}
.right-block{
    padding: 20px;
    border: 1px solid #CCC;
    border-radius: 10px;
    margin-bottom: 20px;
}
.right-block-title{
    justify-content: flex-start;
    color: var(--green);
    font-size: 20px;
    border-bottom: 2px solid #CCC;
    padding-bottom: 10px;

}
.right-block-title .icon{
    width: 30px;
    height: 30px;
    fill: #666;
    margin-right: 10px;
}

.right-block-content{
    padding-top: 10px
}
.right-block-content-item{
    padding: 10px 0;
    font-size: 14px;
}
.before-dot::before{
    content: "●";
    color: var(--green);
    margin-right: 5px;
}


.relative-product .right-block-content-item{
    margin-bottom: 15px;
}
.product-img{
    overflow: hidden;
}
.product-img img{
    width: 100%;
}
.product-title{
    font-size: 14px;
    text-align: center;
}


/*detail*/
.detail-title{
    font-size: 24px;
    text-align: center;
    font-weight: bolder;
}
.detail-info{
    font-size: 14px;
    padding-top: 20px;
}
.info-ingredient{
    padding: 0 5px;
}
.info-date{}
.info-hits{}
.info-share{}
.detail-content{
    padding-top: 20px;
    line-height: 1.8em;
    letter-spacing: 1px;
}
.detail-content img{
    max-width: 95%;
}
.detail-tag{}
.detail-tag .icon{
    fill: #666;
    margin-right: 5px;
}
.detail-tag a{
    padding: 0 5px;
}

