/* 
  乐建土木-在线工具CSS
  www.letm.top
  tool.letm.top
*/

/* 
工期在线计算工具CSS
 */


.container-jisuan {
  padding:10px 15px;
  background-color:#f1f6f9;
  border-radius:15px;
  box-shadow:0 0 10px rgba(0,0,0,0.05)
}

.form-row {
	margin-bottom: 20px
}

.label {
	display: block;
	margin-bottom: 5px;
	font-weight: bold;
	color: #555
}

.input-container {
	display: flex;
	align-items: center;
	width: 100%;
	flex-wrap: nowrap
}

.date-input-container {
	position: relative;
	display: flex;
	align-items: stretch;
	border: 2px solid #e5f0f7;
	border-radius: 8px;
	overflow: visible;
	background-color: #fff;
	padding: 3px
}

.date-inputs {
	display: flex;
	flex-grow: 1;
	align-items: center
}

.date-part {
	display: flex;
	align-items: center;
	background-color: #fff
}

.container .date-input {
	padding: 10px 5px;
	font-size: 24px;
	font-style: normal;
	border: none;
	text-align: center;
	color: #333;
	outline: none;
	margin-bottom: 0 !important;
	width: 100%
}

.container .dates-input {
	padding: 13px 5px;
	font-size: 24px;
	font-style: normal;
	border: none;
	text-align: center;
	color: #333;
	outline: none;
	margin-bottom: 0 !important;
	width: 100%;
	margin-right: 10px;
	background-color: #fff;
	border: 2px solid #e5f0f7;
	border-radius: 8px
}

.container .date-input.year {
	width: 80px;
	background-color: #fff
}

.container .date-input.month,
.date-input.day {
	width: 60px;
	background-color: #fff
}

.container .calendar-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 10px;
	background-color: #fff;
	cursor: pointer;
	transition: background-color 0.3s
}

.container .calendar-icon svg {
	width: 24px;
	height: 24px
}

.container .label-result {
	display: flex;
	align-items: center;
	margin-bottom: 5px;
	font-weight: bold
}

.container .result-icon {
	margin-right: 8px;
	width: 24px;
	height: 24px
}

.container .result-input-container {
	display: flex;
	align-items: stretch
}

.result-input {
	flex: 1;
	padding: 0 0 0 12px;
	font-size: 24px;
	font-style: normal !important;
	background-color: #f4f9fc !important;
	color: #333;
	pointer-events: none;
	border: 2px solid #e5f0f7 !important;
	border-radius: 8px;
	box-sizing: border-box;
	transition: border-color 0.3s;
	-moz-appearance: textfield;
	height: 50px;
	margin: 0 0 10px 0
}

.unit {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	font-weight: bold;
	color: #00b9eb;
	width: 60px;
	height: 50px;
	border: 2px solid #f1f6f9;
	border-radius: 8px;
	box-sizing: border-box;
	background-color: #fff;
	padding: 27px 10px
}

.button-row {
	display: flex;
	justify-content: space-between;
	margin-top: 20px;
	width:80%;
	margin: 0 auto;
}

.calc-button,
.clear-button {
	flex: 1;
	padding: 10px;
	font-size: 16px;
	color: #fff;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	transition: background-color 0.3s
}

.calc-button {
	background-color: #00c8ff;
	margin-right: 10px
}

.calc-button:hover {
	background-color: #00b2e6
}

.clear-button {
	background-color: #ffa41b;
	background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.1) 75%, transparent 75%, transparent);
	background-size: 9px 9px
}

.clear-button:hover {
	background-color: #ff9900
}

.selection-row {
	display: flex;
	justify-content: space-between;
	margin-bottom: 20px
}

.selection-button {
	padding: 15px 20px;
	font-size: 16px;
	font-weight: bold;
	background-color: #d7ebf0;
	color: #333;
	width: calc(30% - 10px);
	border: none;
	border-radius: 8px;
	cursor: pointer;
	transition: background-color 0.3s
}

.selection-button.active {
	background-color: #00c8ff;
	color: #fff
}

.date-picker {
	position: absolute;
	top: 100%;
	left: 50%;
	background-color: #fff;
	padding: 20px 20px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
	border-radius: 8px;
	z-index: 1;
	width: 280px;
	opacity: 0;
	transition: opacity 0.3s ease-in-out;
	pointer-events: none
}

.date-picker.show {
	opacity: 1;
	pointer-events: auto
}

.dropdown {
	position: relative;
	display: inline-block;
	width: 80px;
	margin-right: 10px
}

.dropdown-btn {
	width: 100%;
	padding: 10px;
	background-color: #f1f6f9;
	border: none;
	cursor: pointer;
	text-align: left;
	border-radius: 5px;
	display: flex;
	justify-content: space-between;
	align-items: center
}

.dropdown-btn::after {
	content: '\25BC';
	font-size: 0.5em;
	transition: transform 0.3s ease;
	color: #00c8ff
}

.dropdown.open .dropdown-btn::after {
	transform: rotate(180deg)
}

.dropdown-content {
	display: none;
	position: absolute;
	background-color: #f9f9f9;
	min-width: 80px;
	box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
	z-index: 1;
	max-height: 200px;
	overflow-y: auto;
	opacity: 0;
	transition: opacity 0.3s ease-in-out;
	border-radius: 5px;
	scroll-behavior: smooth
}

.dropdown-content.show {
	display: block;
	opacity: 1
}

.dropdown-content div {
	color: black;
	padding: 12px 16px;
	text-decoration: none;
	display: block;
	cursor: pointer
}

.dropdown-content div:hover {
	background-color: #f1f1f1
}

.dropdown-content div.selected {
	background-color: #e6e6e6
}

.calc-button:disabled {
	background-color: #ccc;
	cursor: not-allowed
}

.calc-button:disabled:hover {
	background-color: #ccc
}

.date-select-btn {
	background-color: #d7ebf0;
	padding: 4px;
	border-radius: 5px
}

.date-picker-button {
	padding: 5px 15px;
	background-color: #00c8ff;
	font-weight: bold;
	text-align: center;
	color: #fff;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	transition: background-color 0.3s
}

.calendar-viewer {
	max-width: 100%;
	margin: 0 auto;
	background-color: white;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1)
}

.calendar-controls {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px
}

.calendar {
	width: 100%
}

.calendar table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	border-radius: 8px;
	overflow: hidden;
	border: 1px solid #e5e5e5;
	margin-bottom: 0
}

.calendar td {
	text-align: center;
	padding: 10px;
	font-size: 24px;
	border-right: 1px solid #e5e5e5;
	border-bottom: 1px solid #e5e5e5;
	border-top: none;
	line-height: 22px
}

.calendar th {
	text-align: center;
	padding: 10px;
	font-size: 16px;
	border-right: 1px solid #e5e5e5;
	border-bottom: 1px solid #e5e5e5;
	background-color: #f1f6f9;
	font-weight: bold;
	border-top: none
}

.calendar th:last-child,
.calendar td:last-child {
	border-right: none
}

.calendar tr:last-child td {
	border-bottom: none
}

.calendar .lunar-date {
	font-size: 12px;
	color: #888
}

.year-month-selectors button {
	padding: 10px 15px;
	background-color: #f1f6f9;
	color: #333;
	font-weight: bold;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	transition: background-color 0.5s ease-in-out
}

.year-month-selectors button:hover {
	background-color: #d7ebf0
}

.lunar-first-day .lunar-date {
	background-color: #4caf50;
	padding: 3px;
	border-radius: 4px;
	font-weight: bold;
	color: #fff
}

.lunar-new-year .lunar-date {
	background-color: #ff5722;
	padding: 3px;
	border-radius: 4px;
	font-weight: bold;
	color: #fff
}

.calendar-dropdown {
	position: relative;
	display: inline-block;
	width: 100px
}

.calendar-dropdown-btn {
	width: 100%;
	padding: 10px;
	background-color: #f1f1f1;
	border: none;
	cursor: pointer;
	text-align: left;
	border-radius: 5px;
	display: flex;
	justify-content: space-between;
	align-items: center
}

.calendar-dropdown-btn::after {
	content: '\25BC';
	font-size: 8px;
	color: #00c8ff;
	transition: transform 0.3s ease
}

.calendar-dropdown.open .calendar-dropdown-btn::after {
	transform: rotate(180deg)
}

.calendar-dropdown-content {
	display: none;
	position: absolute;
	background-color: #f9f9f9;
	min-width: 80px;
	box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
	z-index: 1;
	max-height: 200px;
	overflow-y: auto;
	opacity: 0;
	transition: opacity 0.3s ease-in-out;
	border-radius: 5px
}

.calendar-dropdown-content.show {
	display: block;
	opacity: 1
}

.calendar-dropdown-content div {
	color: black;
	padding: 12px 16px;
	text-decoration: none;
	display: block;
	cursor: pointer
}

.calendar-dropdown-content div:hover {
	background-color: #f1f1f1
}

.calendar-dropdown-content div.selected {
	background-color: #e6e6e6
}

.circle-button {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-color: #00c8ff;
	color: white;
	border: none;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	font-size: 20px;
	font-weight: bold;
	padding: 0;
	transition: background-color 0.3s;
	line-height: 1
}

.circle-button:hover {
	background-color: #00b2e6
}

.solar-term .lunar-date {
	color: #1890ff;
	font-weight: bold
}

@media (max-width:480px) {
	.container {
		padding: 10px
	}

	.date-input-container {
		flex-wrap: nowrap
	}

	.date-inputs {
		width: 100%
	}

	.date-part {
		flex: 1
	}

	.container .date-input {
		font-size: 1.4em;
		padding: 10px 2px
	}

	.container .calendar-icon {
		width: 100%;
		justify-content: flex-end
	}

	.selection-button {
		width: calc(33% - 5px);
		font-size: 1.0em;
		padding: 8px
	}

	.date-picker {
		left: 0
	}

	.unit {
		padding: 25px 10px
	}

	.container .dates-input {
		padding: 11px 5px
	}

	.container .date-input.year {
		width: 60px
	}

	.container .date-input.month,
	.date-input.day {
		width: 40px
	}

	.calendar-viewer {
		padding: 5px
	}

	.lunar-first-day .lunar-date,
	.lunar-new-year .lunar-date {
		padding: 0
	}

	.calendar td {
		font-size: 16px;
		padding: 2px
	}

	.circle-button {
		width: 30px;
		height: 30px
	}

	.year-month-selectors button {
		padding: 10px;
		font-size: 14px
	}

	.calendar-controls {
		margin-top: 15px
	}

	.calendar-dropdown {
		width: 90px
	}
}

.calendar td.today {
	background-color: #e6f7ff;
	font-weight: bold;
}
.sue-icon-text {
    margin-bottom: 0 !important;
    margin-top: 30px;
    border: 1px solid #98d3f9;
    padding: 15px;
}
.sue-icon-text p {
    margin: 6px 0;
    line-height: 20px;
    font-size: 14px;
}
.article-copyright{display:none !important}
.miaoshu {
    margin-left: 8px;
    font-size: 14px;
    font-weight: 400;
    color: #FF0000;
}