textTitleBox.less 841 Bytes
@charset "UTF-8";

.title-box {
	background-color: transparent;
	width: 100%;
	height: auto;
	.box {
		display: flex;
		justify-content: space-between;
		align-items: center;
		margin: 0 auto;
		width: 690px;
		height: auto;
		.title-box {
			display: contents;
			color: #4A4A4A;
			font-size: 36px;
			font-weight: 600;
			.title {
				max-width: 580px;
				white-space: nowrap;
				text-overflow: ellipsis;
				overflow: hidden;
			}
		}
		.more-box {
			display: contents;
			color: #999999;
			font-size: 26px;
			font-weight: 400;
			.more-text {
				max-width: 90px;
				white-space: nowrap;
				text-overflow: ellipsis;
				overflow: hidden;
			}
		}
	}
	&.style-2 {
		.box {
			.title-box {
				display: contents;
				color: #666666;
				font-size: 30px;
				font-weight: 500;
			}
			.more-box {
				font-weight: 500;
			}
		}
	}
}