.eval-form {
    float: left;
    font-size: 30px;
    color: #000;
    text-align: left;
    background: #ffffff;
    border-radius: 0.2rem;
    z-index: 999;
    padding-bottom: 0.2rem;
    margin-bottom: 0.2rem;
    margin-top:0.2rem;
}

.eval-form .newfestival-form-item {
    margin-bottom: 0.1rem;
    display: flex;
}

.eval-form .newfestival-form-item label {
    font-size: 14px;
    height: 0.6rem;
    line-height: 0.6rem;
    font-weight: 580;
    flex: 1;
}

.eval-form .newfestival-form-item .input {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    flex: 3.8;
    min-height: 0.6rem;
    line-height: 0.6rem;
}

.eval-form .newfestival-form-item input,
.eval-form .newfestival-form-item textarea,
.eval-form .newfestival-form-item select {
    float: left;
    width: 100%;
    height: 0.6rem;
    font-size: 0.28rem;
    padding: 0 0.24rem;
    box-sizing: border-box;
    border: solid 1px #e4e4e4;
    color: #666;
    border-radius: 0.1rem;
    outline: none;
}

.item .newfestival-form-item select option {
    height: 0.5rem;
    line-height: 0.5rem;
}

.eval-form .newfestival-form-item .score {
    width: 18px;
    height: 0.6rem;
    line-height: 0.6rem;
    margin-right: 2px;
    margin-left: 2px;
    opacity: 0.3;
}

.eval-form .newfestival-form-item .score.active {
    opacity: 1;
}

.eval-form .newfestival-form-item .score-txt {
    height: 0.6rem;
    line-height: 0.7rem;
    font-size: 12px;
    color: #d6171a;
}


.eval-form .newfestival-form-item .score img {
    width: 18px;
    height: 18px;
}

.eval-form .newfestival-form-item textarea {
    height: 1.5rem;
    padding: 3px 0.24rem;
    line-height: 0.6rem;
}

.item .newfestival-form-item input[type="text"]:focus,
.eval-form .newfestival-form-item textarea:focus {
    box-shadow: inset 0 1px 1px #00000007, 0 0 8px #b01b1b61;
}

.eval-form .newfestival-form-item .button {
    float: left;
    width: 100%;
    padding: 0.67em 0;
    background: #d6171a;
    color: #fff;
    font-size: 0.32rem;
    border-radius: 0.1rem;
}

.eval-form .newfestival-form-item input[type="radio"] {
    width: auto;
    height: auto;
    font-size: 12px;
    float: none;
}

.eval-form .newfestival-form-item .label {
    font-size: 12px;
    line-height: 0.6rem;
    width: calc(33.3%);
}

.eval-form .newfestival-form-item .files {
    flex: 3.5;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    /* 改为从左开始排列 */
    gap: 5px;
    /* 添加间距 */
}

.eval-form .newfestival-form-item .file {
    width: calc(25.5% - 8px);
    /* 每行3个，减去间距 */
    height: 60px;
    margin-bottom: 10px;
    /* 行间距 */
    border: 1px dashed #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.eval-form .newfestival-form-item .file .up-btn {
    font-size: 12px;
    color: #999;
}

.eval-form .newfestival-form-item .file img {
    width: 100%;
    height: 100%;
    border: none;
}

.eval-form .newfestival-form-item .file .del {
    font-size: 14px;
    position: absolute;
    color: #e43838;
    top: 0;
    right: 3px;
}

/**评价列表**/

.eval-item {
    padding: 5px;
    font-size: 14px;
}

.eval-item .talk,
.eval-item .reply {
    padding: 10px;
    display: flex;
}

.eval-item .left {
    display: flex;
    justify-content: center;
    width: 20px;
    height: 20px;
    font-size: 12px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-right: 10px;
}

.eval-item .talk .left {
    background-color: #e43838;
}

.eval-item .reply .left {
    background-color: #3a7bdb;
}

.eval-item .talk .tags {
    display: inline-flex;
    justify-content: space-between;
    width: 100%;
    font-size: 12px;
    color: #666;
    margin-bottom: 10px;
}

.eval-item .talk .score-div {
    color: #666;
    line-height: 0.6rem;
    display: flex;
}

.score-div .score {
    width: 18px;
    height: 0.6rem;
    line-height: 0.6rem;
    margin-right: 2px;
    margin-left: 2px;
    opacity: 0.2;
}

.score-div .score.active {
    opacity: 1;
}

.score-div .score-txt {
    height: 0.6rem;
    line-height: 0.7rem;
    font-size: 12px;
    color: #d6171a;
}

.score-div .score img {
    width: 18px;
    height: 18px;
}

.eval-item .content {
    color: #333;
    font-size: 14px;
    line-height: 28px;
}

.eval-item .images-div {
    display: flex;
    color: #666;
}

.eval-item .right .images {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    /* 改为从左开始排列 */
    gap: 5px;
    /* 添加间距 */
}

.eval-item .right .images img {
    width: calc(25.5% - 8px);
    /* 每行3个，减去间距 */
    height: 50px;
    /* 行间距 */
    display: flex;
    align-items: center;
    justify-content: center;
}

.eval-item .right {
    flex: 1;
}

.eval-item .talk {
    background: #f0dfe6;
    margin-bottom: 1px;
    border: 1px solid #f0dfe6;
    border-radius: 10px;
    margin-top:0.2rem;
}

.eval-item .reply {
    background: #e2e3e7;
    border: 1px solid #e2e3e7;
    border-radius: 10px;
}

.eval-item .time {
    color: #666;
    margin-bottom: 10px;
    font-size: 12px;
}