#main-content {
    background-color: rgb(247,247,247);
}
.top-bar {
    width: 100%;
    min-width: 1200px;
    height: 64px;
    background-color: white;
    padding: 0 25px;
    position: relative;
}
.notice-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 14px;
    color: red;
    font-weight: bold;
}
.top-left, .top-right {
    height: 100%;
    width: 25%;
}
.top-user-name {
    margin: 0 8px;
    font-size: 14px;
    font-weight: 600;
    color:black;
}

.like-button,
.star-button {
    height: 34px;
    padding: 0 15px;
    border: 1px solid rgba(0,0,0,.15);
    background-color: white;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.1s;
    color: rgba(0,0,0,.65);
}
.star-button {
    padding: 0 10px;
    margin-left: 10px;
}
.is-liked.like-button {
    background-color: rgb(31,148,255);
    border-color: rgb(31,148,255);
    color: white;
}
.like-button:hover,
.star-button:hover {
    background-color: rgb(245,245,245);
}
.is-liked.like-button:hover {
    background-color: rgb(94,186,255);
    border-color: rgb(94,186,255);
}
.like-button svg,
.star-button svg {
    width: 14px;
}
.is-liked.like-button svg path {
    fill: rgb(255,255,255);
}
.like-button svg path {
    fill: rgb(0,0,0,0.85);
}
.svg-before-favorite {
    display: inline-block;
}
.is-favorite .svg-before-favorite {
    display: none;
}
.svg-after-favorite {
    display: none;
}
.is-favorite .svg-after-favorite {
    display: inline-block
}
.like-button .like-num {
    font-size: 14px;
    margin-left: 10px;
    color:inherit;
}

.image-container {
    width: 100%;
    min-width: 1200px;
    padding: 20px 0;
    height: 750px;
}
.image-container video {
    height: 100%;
}
.image-box {
    width: 1200px;
    height: 703px;
    overflow: hidden;
}
.image-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    border-radius: 2px;
    cursor: pointer;
}

.bottom-container {
    width: 100%;
    min-height: 40vh;
    background-color: white;
    padding-bottom: 100px;
}
.bottom-container svg {
    width: 14px;
}
.fade-str {
    font-size: 12px;
    color:rgba(0,0,0,.45);
}
.content-box {
    width: 1200px;
    padding-top: 20px;
    margin: 0 auto;
    align-items: flex-start;
}
.content-left {
    width: 772px;
    padding: 0 12px;
}
.content-right {
    width: 368px;
    padding: 0 12px;
}
.content-left h1 {
    font-size: 1rem;
    line-height: 1.2rem;
    color: rgba(0,0,0,.85);
    font-weight: 600;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-word;
    word-wrap: break-word;
}
.image-sundry {
    margin-top: 8px;
    width: 100%;
}
.publish-date {
    font-size: 12px;
    color: rgba(0,0,0,.45);
}
.views-box {
    margin-left: 20px;
}
.views-box svg {
    width: 16px;
}
.views-box .views-num {
    font-size: 12px;
    color: rgba(0,0,0,.45);
    margin-left: 5px;
}
.equipment-box {
    margin-left: 20px;
}
.equipment-box span{
    color: #1088f2;
    cursor: pointer;
    font-size: 12px;
}
.hr-line {
    height: 32px;
    position: relative;
}
.hr-line span {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    display: block;
    width: 100%;
    height: 1px;
    background-color: #e8e8e8;
}
.desc-box {
    font-size: 14px;
    line-height: 1.7;
}

.tags-list {
    margin-top: 16px;
    width: 100%;
}
.tags-list a {
    font-size: 14px;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 5px 12px;
    font-weight: 400;
    color: rgba(0,0,0,.65);
    white-space: nowrap;
    text-align: center;
    background-color: rgba(0,0,0,.04);
    transition: all .3s ease;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border-radius: 88rem;
}
.tags-list a:hover {
    background-color: rgb(232,232,232);
    color: rgba(0,0,0,.85);
}

.comment-num-box span {
    font-weight: bold;
    font-size: 18px;
    color: rgb(75,75,75);
}
.comment-input-box {
    margin-top: 16px;
    margin-bottom: 2px;
    align-items: flex-start;
}
.reply-and-comment {
    height: auto;
    width: 94%;
    user-select: none;
}
.reply-to-box {
    width: 100%;
    height: 32px;
    background-color: rgb(247,247,247);
    padding: 0 16px 0 8px;
}
.reply-to-box svg{
    width: 16px;
    cursor: pointer;
}
.reply-to-box span {
    font-size: 12px;
    color: rgba(0,0,0,.75);
}
.reply-to-box span.reply-to-name {
    font-weight: bold;
}
.comment-input-div {
    width: 100%;
    height: auto;
    overflow: hidden;
    border-radius: 4px;;
    border: 1px solid rgb(232,232,232);
    position: relative;
}
.comment-input {
    font-size: 12px;
    height: 32px;
    color: rgb(75,75,75);
    height: 100%;
    width: 100%;
    border: 0;
    background-color: none;
    padding: 0 8px;
}
.comment-send-button {
    position: relative;
    width: auto;
    min-height: 1.6rem;
    margin: 0;
    padding: 0 0.75rem;
    border-left: 1px solid rgba(0,0,0,.15);
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 0.2rem;
    background: #fff;
    color: rgba(0,0,0,.65);
    font-size: .7rem;
    line-height: 1rem;
    font-weight: 400;
    white-space: nowrap;
    text-align: center;
    transition: all .3s ease;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background: linear-gradient(#40a9ff,#1890ff);
    color: white;
    cursor: pointer;
    transition: all 0.15s;
}
.comment-send-button:hover {
    background: linear-gradient(rgb(87,182,255),rgb(84,180,255));
}
.comment-count {
    padding-right: 5px;
}
.comment-count span{
    font-size: 12px;
    color: rgb(125,125,125);
}

.comment-list {
    margin-top: 15px;
    width: 100%;
}
.comment-item {
    width: 100%;
    align-items: flex-start;
    margin-bottom: 16px;
}
.comment-item.comment-item-template {
    display: none;
}
.comment-avatar-box {
    margin-right: 10px;
    position: relative;
    top: 6px;
    cursor: pointer;
    width: 32px;
    height: 32px;
}
.comment-item-right {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    width: 94%;
}
.comment-user-name {
    font-size: 14px;
    margin-right: 5px;
    cursor: pointer;
    color: rgba(0,0,0,.85);
}
.comment-date {
    font-size: 12px;
    color:rgba(0,0,0,.45);
}
.comment-content {
    font-size: .7rem;
    color: rgba(0,0,0,.85);
    line-height: 1rem;
    /* white-space: pre-wrap; */
    word-break: break-word;
    margin: 8px 0 4px;
}
.reply-box {
    cursor: pointer;
}

.hot-sale-box {
    width: 100%;
}
.hot-sale-box h2 {
    font-size: 18px;
    width: 100%;
    margin-bottom: 16px;
}

.also-like-box {
    width: 100%;
    margin: 32px 0;
}
.also-like-box h2 {
    font-size: 18px;
    margin-bottom: 16px;
}
.recommend-item {
    width: 100%;
    margin-bottom: 16px;
}
.recommend-img-box {
    width: 176px;
    height: 120px;

    overflow: hidden;
}
.recommend-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.recommend-item-right {
    width: 176px;
    margin-left: 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}
.recommend-item-right .recommend-title{
    font-size: .8rem;
    line-height: 1rem;
    font-weight: 600;
    color: rgba(0,0,0,.85);
    margin-bottom: 0.4rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    white-space: pre-wrap;
    word-wrap: break-word;
    word-break: break-word;
}
.recommend-item-right .recommend-author {
    color: rgb(125,125,125);
}
.recommend-item-right a:hover {
    text-decoration: underline;
}





