textTitleBox.less 1018 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: flex;
			justify-content: flex-start;
			align-items: center;
			color: #999999;
			font-size: 26px;
			font-weight: 400;
			.more-text {
				max-width: 90px;
				white-space: nowrap;
				text-overflow: ellipsis;
				overflow: hidden;
				& + .icon-img {
					margin-left: 10px;
				}
			}
			.icon-img {
				display: block;
				width: 36px;
				height: 36px;
			}
		}
	}
	&.style-2 {
		.box {
			.title-box {
				display: contents;
				color: #666666;
				font-size: 30px;
				font-weight: 500;
			}
			.more-box {
				font-weight: 500;
			}
		}
	}
}