.write-evaluate-container {
	.write-evaluate-content {
		.evaluate-score {
			display: flex;
			flex-direction: column;
			align-items: center;
			justify-content: center;
			margin-top: 48px;
			.evaluate-score-icon {
				.score-icon {
					cursor: pointer;
					margin-right: 15px;
				}
			}
			p {
				font-size: 14px;
				color: #b0b0b0;
				font-weight: 300;
				margin-bottom: 0;
				margin-top: 18px;
			}
		}
		.evaluate-label-list,.solve-label-list {
			display: flex;
			flex-wrap: wrap;
			justify-content: space-between;
			margin-bottom: 0;
			margin-top: 30px;
			li {
				position: relative;
				cursor: pointer;
				width: 221px;
				height: 34px;
				border: 1px solid #e7e7e7;
                border-radius: 3px;
                text-align: center;
                line-height: 34px;
                font-size: 14px;
                color: #999999;
                margin-bottom: 10px;
                &.active {
					font-weight: 500;
					span {
						display: block;
					    width: 100%;
					    height: 100%;
					    position: absolute;
					    top: 0px;
					    left: 0px;
                    }
                }
                &.fullWidth {
                	width: 100%;
                }
			}
		}
		.evaluate-solve {
			margin-top: 30px;
			.title {
				font-size: 15px;
				color: #333333;
				text-align: center;
			}
			.solve-label-list {
				margin-top: 16px;
			}
		}
		.solve-textarea {
			border: 1px solid #e7e7e7;
            border-radius: 3px;
			margin-top: 20px;
			fieldset {
				border: none;
			}
			textarea {
				font-size: 14px;
				color: #494949;
				font-weight: 300;
			}
		}
	}
	.evaluate-footer {
		display: flex;
		justify-content: flex-end;
		margin-bottom: 28px;
		margin-top: 50px;
	}
}