﻿/* 产品中心 */
#wrap-products {
	height: 100vh;
	overflow: auto;
}

/* banner图 */
#wrap-products .banner-image {
	width: 100%;
}

/* 内容容器 */
#wrap-products .content-container {
	width: calc(100% * 0.83);
	margin: 0px auto;
	margin-top: 50px;
	margin-bottom: 100px;
	display: flex;
}

/* 左侧列表项 */
#wrap-products .list-item {
	width: 160px;
	height: 40px;
	font-size: 16px;
	line-height: 40px;
	margin-bottom: 10px;
	cursor: pointer;
	text-align: center;
	border-radius: 5px;
	color: #fff;
	overflow: hidden;
	transition: background-color 0.2s ease 0s;
	background-color: #0760ab;
}

/* 列表交互效果 */
#wrap-products .list-item:hover {
	background-color: #00b277;
}

#wrap-products .list-checked {
	background-color: #00b277 !important;
}

/* 右侧内容容器 */
#wrap-products .prduct-detail{
	display:none;
}

#wrap-products .detail-container,
#wrap-products .prduct-detail {
		margin-left: 100px;
		flex: 1;
}
#wrap-products .detail-container[class$='hide']{
	display: none;
}
#wrap-products .prduct-detail[class$='active'] {
		display: block;
	}
/* 内容标题 */
#wrap-products .detail-title {
	font-size: 25px;
	color: #0760ab;
	margin-bottom: 15px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

/* 具体内容 */
#wrap-products .detail-info {
	color: #676767;
	font-size: 14px;
	line-height: 1.4rem;
}

/* 右侧p标签css */
#wrap-products .synopsis-item p {
	margin-bottom: 25px;
}

/* 产品名称 */
#wrap-products .product-title {
	font-weight: bold;
        font-size: 16px;

        color: #333;
}

/* 产品说明 */
#wrap-products .product-info {
	margin-top: 20px;
}

/* 详细按钮 */
#wrap-products .detail-button {
	width: 150px;
	text-align: center;
	line-height: 40px;
	border-radius: 20px;
	height: 40px;
	font-size: 15px;
	background-color: #f8f8f8;
	border: 1px #D9D9D9 solid;
	color: #666666;
}

/* 交互效果 */
#wrap-products .detail-button:hover {
	color: #0661ab;
}

/* 链接靠右 */
#wrap-products .detail-link {
	display: flex;
	justify-content: flex-end;
}

/* 数据表格 */
#wrap-products .table-list {
	text-align: center;
	border: 1px #E5E5E5 solid;
}

#wrap-products .table-list tr td {
	background-color: #fff !important;
}

#wrap-products .table-list tr th,
#wrap-products .table-list tr td {
	width: calc(100% / 1200);
	height: 30px;
	overflow: hidden;
	white-space: nowrap;
	background-color: #f8f8f8;
	padding: 0px 10px 0px 10px;
	box-sizing: border-box;
}
/* 信息登记表单 */
#wrap-products .form-container {
	/*width: 800px;
	margin: 0px auto;
	display: flex;
	flex-direction: column;
	align-items: center;*/
}

#wrap-products .input-item {
	display: flex;
	margin-bottom: 5px;
}

#wrap-products .input-title {
	padding-right: 10px;
	width: 60px;
	text-align: right;
}

#wrap-products .case-input {
	width: 300px;
	height: 25px;
	margin-bottom: 15px;
	border: 1px #e5e5e5 solid;
	resize: none;
}

#wrap-products textarea {
	width: 300px !important;
	min-height: 100px !important;
	max-height: 100px !important;
	outline: none;
}

#wrap-products .btn-group button {
	width: 170px;
	height: 40px;
	color: #666666;
	cursor: pointer;
	border-radius: 20px;
	font-size: 16px;
	outline: none;
	background-color: #fff;
	margin-left:20px;
	border: 1px #D9D9D9 solid;
}

#wrap-products .btn-group button:hover {
	color: #0661ab;
}
#wrap-products .detail-tab {
	display: flex;
	border: 1px #e5e5e5 solid;
	width: fit-content;
	border-radius: 20px;
	height: calc(40px - 2px);
	line-height: calc(40px - 2px);
	margin: 15px 0px;
}
#wrap-products .detail-tab-item {
	padding: 0px calc(15px - 2px);
	cursor: pointer;
	display: flex;
	border: 1px transparent solid;
	align-items: center;
}
#wrap-products .detail-tab-item:last-child{
	border-radius:0px 0px 0px 0px;
}
#wrap-products .radius-none {
	background-color: #e7f3fe;
	color: #3f8ced;
	border: 1px #3f8ced solid;
	border-radius: 20px;
}
#wrap-products .detail-tab-item[class$="active"],
#wrap-products .detail-tab-item:nth-child(2n)[class$="active"] {
	background-color: #e7f3fe;
	color: #3f8ced;
	border: 1px #3f8ced solid;
	border-radius: 20px;
}
#wrap-products .detail-tab-content{
	color:#000;
	overflow-x:hidden;
	word-break:break-word;
	line-height:25px;
}
