a {
  all: unset;           /* 清除所有浏览器默认样式 */
  cursor: pointer;      /* 恢复点击手势 */
  display: inline;      /* 根据需要恢复为行内元素 */
}

/* 输入框公共样式 开始 */
input::placeholder {
    color: #B2B2B2;
    font-size: 14px;
}

input:focus {
    outline: 1px solid #FF6F6F;
}

.overflow {
	overflow: hidden;
}

/* 输入框公共样式 结束 */

/* 单选按钮公共样式  开始 */
.radio_list {
    display: flex;
    align-items: center;
}

.radio_item {
    display: flex;
    align-items: center;
}

.radio_item:not(:last-child) {
    margin-right: 20px;
}

.radio_item_icon {
    border: 1px solid #BEBEBE;
    background-color: #ffffff;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 5px;
    flex-shrink: 0;
}

.radio_item .radio_item_text {
    line-height: 1;
    font-size: 14px;
    color: #333333;
}

.radio_item.active .radio_item_icon {
    border: 3px solid #2DCAE8;
}

/* 单选按钮公共样式  结束 */

/* 日历组件公共样式 开始*/
.calendar_open {
	overflow: hidden;
}
.date-input {
    width: 100%;
    height: 30px;
    border: none;
    font-size: 14px;
    padding: 0 5px;
}

.model-header {
    width: 100%;
}

.calendar-popup {
    position: fixed;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1000;
    bottom: -200vh;

}

.calendar-popup-container {
    position: absolute;
    bottom: -200vh;
    left: 0;
    width: 100%;
    background-color: white;
    border-radius: 8px 8px 0 0;
    padding: 0 15px 15px 15px;
    transition: bottom 0.3s ease-in-out;
}

.calendar-popup.active {
    bottom: 0;
}

.calendar-popup.active .calendar-popup-container {
    bottom: 0;
}

.model-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

.model-header span {
    font-size: 16px;
    color: #333333;
    font-weight: bold;
}

.model-header button {
    background: none;
    border: none;
    font-size: 15px;
    color: #333333;
}

.model-header button.reset {
    color: #E82D3E;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    line-height: 1;
}

.calendar-header button {
    background: none;
    border: none;
    font-size: 20px;
    color: #333333;
}

.calendar-nav {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 20px;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.calendar-day {
    text-align: center;
    padding: 8px 0;
    cursor: pointer;
    border-radius: 4px;
}

.calendar-day:hover {
    background-color: #f0f0f0;
}

.calendar-day.selected {
    background-color: #4CAF50;
    color: white;
    position: relative;
}

.calendar-day.selected::after {
    content: '入住';
    position: absolute;
    bottom: 2px;
    left: 0;
    font-size: 8px;
    color: #ffffff;
    width: 100%;
    text-align: center;
}

.calendar-day.other-month {
    color: #ccc;
}

.weekday-header {
    font-weight: bold;
    text-align: center;
    padding: 8px 0;
}



/* 日历组件公共样式  结束*/

/* 底部弹框公共样式 开始 */

/* 底部弹框公共样式 结束 */