﻿.calculator-title {
	color:#111;
	font-size:32px;
	font-weight:500;
	line-height:45px;
	padding:0px 0 28px;
	text-align:center;
}
.calculator-content {
	display:flex;
	width:1240px;
	margin:0px auto;
}
.calculator-content .left {
	border-right:1px solid #ebebeb;
	box-sizing:border-box;
	padding-right:80px;
	width:602px;
}
.from-radio {
	display:flex;
	width:100%;
}
.from-radio .label,.from-input .label,.from-row .label {
	-ms-flex-negative:0;
	color:#111;
	-webkit-flex-shrink:0;
	flex-shrink:0;
	font-size:16px;
	font-weight:500;
	height:40px;
	line-height:40px;
	margin-right:10px;
	text-align:right;
	width:96px;
}
.from-radio .radio-content,.from-input .input-content,.from-row .row-content {
	-webkit-box-flex:1;
	flex:1;
	position:relative;
}
.from-radio .radio-list {
	display:flex;
	-ms-flex-wrap:wrap;
	flex-wrap:wrap;
}
.radio-item {
	display:flex;
	align-items:center;
	cursor:pointer;
	font-size:15px;
	color:#333;
	margin-top:10px;
}
.radio-item input[type="radio"] {
	display:none;
}
.radio-item input[type="radio"]:checked + .radio-checkbox {
	border-color:#ff6804;
	background-color:#ff6804;
}
.radio-checkbox {
	position:relative;
	width:16px;
	height:16px;
	border:2px solid #ccc;
	border-radius:50%;
	margin-right:10px;
}
.radio-item input[type="radio"]:checked + .radio-checkbox::after {
	content:"";
	position:absolute;
	top:2px;
	left:4px;
	width:5px;
	height:8px;
	border:solid #ffffff;
	border-width:0 2px 2px 0;
	transform:rotate(45deg);
	animation:checkIn 0.3s ease;
}
.from-input {
	display:flex;
	width:100%;
}
.from-input .input-wrap {
	background:#f8f8f8;
	border-radius:4px;
	height:40px;
	position:relative;
}
.from-input .input-wrap > input {
	background:#f8f8f8;
	border-radius:4px;
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
	color:#111;
	height:40px;
	padding:0 12px;
	width:100%;
	outline:none;
	border:0;
}
.from-input .input-wrap .suffix {
	background:#f8f8f8;
	color:#999;
	font-size:14px;
	font-weight:400;
	line-height:20px;
	margin-top:-10px;
	position:absolute;
	right:12px;
	top:50%;
}
.from-input .select-input {
	background:#f8f8f8;
	border:1px solid transparent;
	height:36px;
	line-height:34px;
	padding:0 10px;
	width:100%;
	outline:none;
}
.from-row {
	display:flex;
	margin-bottom:24px;
	width:100%;
}
.from-row .row-wrap {
	-webkit-box-align:center;
	-webkit-box-pack:justify;
	align-items:center;
	display:flex;
	height:40px;
	-webkit-justify-content:space-between;
	justify-content:space-between;
}
.from-row .row-wrap .item-text {
	color:#999;
	font-size:18px;
	font-weight:500;
	line-height:18px;
}
.from-row .tip {
	color:#999;
	font-size:12px;
	font-weight:400;
	line-height:20px;
	margin-top:8px;
	max-width:100%;
	overflow:hidden;
}
.btn-wrap .button {
	background:#ff6804;
	border-radius:4px;
	color:#fff;
	cursor:pointer;
	font-size:16px;
	font-weight:500;
	height:40px;
	line-height:40px;
	margin-left:106px;
	text-align:center;
	width:286px;
}
 .calculator-content .right {
	box-sizing:border-box;
	height:400px;
	padding-left:80px;
	width:536px;
}
.calculator-content .right .result-header {
	-webkit-box-align:end;
	align-items:end;
	color:#999;
	display:flex;
	font-size:12px;
	font-weight:400;
	line-height:16px;
}
.calculator-content .right .result-header .title {
	color:#111;
	font-size:16px;
	font-weight:500;
	line-height:20px;
	margin-right:8px;
}
.calculator-content .right .result {
	border-bottom:1px solid #ebebeb;
	box-sizing:border-box;
	min-height:260px;
	padding:40px 0 40px 130px;
}
.calculator-content .right .result-item {
	-webkit-box-align:center;
	align-items:center;
	color:#111;
	display:flex;
	font-size:16px;
	font-weight:400;
	line-height:20px;
	margin-bottom:18px;
}
.calculator-content .right .result-item .name {
	font-weight:500;
	margin-right:6px;
	min-width:86px;
	text-align:right;
}
.calculator-content .right .result-item:first-of-type .value {
	color:#ff6804;
	font-size:22px;
	font-weight:500;
	line-height:22px;
}
.calculator-content .right .description {
	color:#666;
	font-size:12px;
	font-weight:400;
	line-height:20px;
	margin-top:40px;
	white-space:pre-line;
}

