.review-full {
    max-width: 100%;
    margin: 30px 8%;
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial,
        "PingFang SC", "Microsoft YaHei", sans-serif;
    background: #fff;
    border-radius: 8px;
    padding: 0 15px;
    box-sizing: border-box;
}

.review-full-title {
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}

.review-full-item {
    border-bottom: 1px solid #eaeaea;
    padding: 12px 0;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.review-full-left {
    /* display: flex; */
    flex-direction: column;
    align-items: center;
    width: 150px;
}

.review-full-avatar-list {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 7px;
}

.review-full-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ff0000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    color: #ffffff;
}

.review-full-avatar-name {
    font-size: 20px;
    color: #333;
}

.review-full-country,
.review-full-verified {
    font-size: 11px;
    color: #666;
    line-height: 1.6;
}

.review-full-right {
    flex: 1;
}

.review-full-hd {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.review-full-stars {
    color: #f5a623;
    font-weight: bold;
}

.review-full-date {
    font-size: 12px;
    color: #999;
}

.review-full-txt {
    line-height: 1.5;
    color: #333;
    margin-bottom: 4px;
}

.review-full-helpful {
    font-size: 12px;
    color: #666;
}

.review-flag-us {
    padding-left: 20px; /* 给图标留位 */
    background: url("/flag/us.svg") left center no-repeat;
    background-size: 16px 12px; /* 小图标尺寸 */
    font-size: 12px;
}

.review-flag-de {
    padding-left: 20px; /* 给图标留位 */
    background: url("/flag/de.svg") left center no-repeat;
    background-size: 16px 12px; /* 小图标尺寸 */
    font-size: 12px;
}

.review-flag-fa {
    padding-left: 20px; /* 给图标留位 */
    background: url("/flag/gb.svg") left center no-repeat;
    background-size: 16px 12px; /* 小图标尺寸 */
    font-size: 12px;
}
.review-flag-v{
	padding-left: 20px; /* 给图标留位 */
    background: url("/flag/Verified.png") left center no-repeat;
    background-size: 16px 12px; /* 小图标尺寸 */
    font-size: 12px;
    color: #00ff00;
}

.review-more {
    text-align: center;
    margin-top: 20px;
}

.more-button {
    background-color: #f0f0f0;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: #333;
}

.more-button:hover {
    background-color: #e0e0e0;
}

.more-arrow {
    font-weight: bold;
}

.review-product {
    display: flex;
    align-items: center;
    background-color: rgba(192, 192, 192, 0.5); /* 半透明背景颜色 */
    padding: 5px 10px; /* 调整内边距 */
    margin: 10px auto;
    border-radius: 4px; /* 圆角 */
}
.review-product-image {
    width: 50px;
    height: 50px;
    margin-right: 10px;
}
.review-product-price {
    color: #e74c3c;
    font-weight: bold;
}
 .review-link {
    color: #3498db;
    text-decoration: none;
    font-size: 0.9em;
    align-self: center;
}

