.price .list {
	margin-top: 50px;
}
.price .list .item button {
	position: relative;
	display: block;
	width: 100%;
	text-align: left;
	padding: 30px 0;
	font-size: 24px;
	font-weight: 500;
	border-bottom: 1px solid #DDD;
}
.price .list .item button:after {
	content: '';
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%) rotate(0deg);
	display: block;
	width: 30px;
	height: 30px;
	background: url("../images/ico-down.svg")no-repeat 50% 50% / 20px;
}
.price .list .item .cont {
	display: none;
}
.price .list .item .cont img {
	width: 100%;
}
.price .list .item.open button:after {
	transform: translateY(-50%) rotate(180deg);
}
.price .list .item.open .cont {
	display: block;
}

.price .list .txt {
	position: relative;
    font-size: 20px;
    padding: 25px 20px;
}
.price .list .txt:before {
	content: '';
	position: absolute;
	top: 35px;
	left: 5px;
	display: block;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--key-color);
}
.price .list .form {
	gap: 30px;
	margin-bottom: 20px;
}
.price .list .form > div {
	flex: 1;
}
.price .list .form > div .cmt {
	color: #aaa;
	margin-bottom: 10px;
}
.price table {
    border: 1px solid #e9ecef;
	border-top: 2px solid #333;
}
.price table th,
.price table td {
	border: 1px solid #e9ecef;
	text-align: center;
    vertical-align: middle;
    border-color: #ccc;
    padding: 15px 10px;
}
.price table th {
    background: #f5f5f5;
}



@media screen and (max-width: 1460px) {
}
@media screen and (max-width: 1024px) {
	.price .list .item button {
		font-size: 18px;
		padding: 20px 0;
	}
	
	.price .list .txt {
		font-size: 16px;
	}
	.price .list .txt:before {
		top: 32px;
	}
	.price .list .form {
		gap: 15px;
	}
	.price .list .form > div .cmt {
		font-size: 14px;
	}
	.price table th, 
	.price table td {
		font-size: 14px;
	}
}
@media screen and (max-width: 768px) {
	.price .list .form > div {
		flex: none;
		width: 100%;
	}
	.price .list .form .scroll {
		overflow-x: auto;
	}
	.price .list .form .scroll table {
		min-width: 430px;
	}
}
@media screen and (max-width: 480px) {
}
@media screen and (max-width: 380px) {
}