跳至正文

养老服务满意度调查

    .uacf7-uacf7style-1857 label { font-style: normal;font-weight: normal; } .uacf7-uacf7style-1857 input[type="email"], .uacf7-uacf7style-1857 input[type="number"], .uacf7-uacf7style-1857 input[type="password"], .uacf7-uacf7style-1857 input[type="search"], .uacf7-uacf7style-1857 input[type="tel"], .uacf7-uacf7style-1857 input[type="text"], .uacf7-uacf7style-1857 input[type="url"], .uacf7-uacf7style-1857 input[type="date"], .uacf7-uacf7style-1857 input[type="radio"], .uacf7-uacf7style-1857 input[type="checkbox"], .uacf7-uacf7style-1857 select, .uacf7-uacf7style-1857 textarea { font-style: normal;font-weight: normal;border-style: solid!important; } .uacf7-uacf7style-1857 .wpcf7-radio span, .uacf7-uacf7style-1857 .wpcf7-checkbox span { font-style: normal;font-weight: normal; } .uacf7-uacf7style-1857 textarea { } .wpcf7-form-control-wrap select { width: 100%; } .uacf7-uacf7style-1857 input[type="submit"] { font-style: normal;font-weight: normal;border-style: none; } .uacf7-uacf7style-1857 input[type="submit"]:hover { } /* 基础样式 - 可根据需要修改主色调 */ :root { --primary-color: #4a90e2; /* 主色调 - 蓝色 */ --primary-hover: #3a80d2; /* 主色悬停 */ --bg-color: #f9f9f9; /* 背景色 */ --border-color: #ddd; /* 边框色 */ --text-color: #333; /* 文本色 */ --hover-bg: #e0e0e0; /* 悬停背景 */ --error-color: #e74c3c; /* 错误色 */ } /* 表单容器 */ .cf7-ultra-container { max-width: 1000px; margin: 0 auto; padding: 20px; } /* 分区卡片 */ .cf7-section-card { background-color: #fff; border-radius: 8px; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); margin-bottom: 25px; padding: 25px; transition: all 0.3s ease; border-left: 4px solid var(--primary-color); } .cf7-section-card:hover { box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); } /* 分区标题 */ .cf7-section-title { color: var(--text-color); font-size: 20px; font-weight: 600; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 1px solid #eee; display: flex; align-items: center; } .cf7-section-title::before { content: ''; display: inline-block; width: 6px; height: 20px; background-color: var(--primary-color); margin-right: 10px; border-radius: 3px; } /* 分区副标题 */ .cf7-section-subtitle { color: #666; font-size: 14px; margin-top: -15px; margin-bottom: 20px; font-style: italic; } /* 表单布局 - 响应式网格 */ .cf7-form-row { display: flex; flex-wrap: wrap; margin: 0 -15px; } .cf7-form-col { flex: 1; padding: 0 15px; margin-bottom: 20px; min-width: 280px; /* 小屏幕最小宽度 */ } @media (max-width: 768px) { .cf7-form-col { flex-basis: 100%; } } /* 输入框通用样式 */ .cf7-input-wrapper { position: relative; } .cf7-label { display: block; margin-bottom: 8px; font-weight: 500; color: #555; display: flex; align-items: center; } .required { color: var(--error-color); margin-left: 3px; font-size: 14px; } .cf7-input, .cf7-select, .cf7-textarea { width: 100%; padding: 12px 15px; border: 1px solid var(--border-color); border-radius: 5px; background-color: #fff; transition: all 0.3s ease; font-size: 15px; color: var(--text-color); box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); } .cf7-input:focus, .cf7-select:focus, .cf7-textarea:focus { outline: none; border-color: var(--primary-color); background-color: #fff; box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.2); transform: translateY(-1px); } .cf7-input::placeholder, .cf7-textarea::placeholder { color: #999; font-style: italic; } /* 单选按钮(评分)样式 */ .cf7-rating-group { margin-bottom: 20px; } .cf7-rating-label { display: block; margin-bottom: 12px; font-weight: 500; color: #555; } .cf7-radio input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; } .cf7-radio span.wpcf7-list-item { display: inline-block; margin-right: 10px; margin-bottom: 10px; } .cf7-radio input[type="radio"] + span.wpcf7-list-item-label { display: inline-block; padding: 10px 18px; border-radius: 6px; background-color: var(--bg-color); color: #666; cursor: pointer; transition: all 0.2s ease; font-size: 15px; line-height: 1.4; min-width: 120px; text-align: center; } .cf7-radio input[type="radio"]:checked + span.wpcf7-list-item-label { background-color: var(--primary-color) !important; color: #fff !important; box-shadow: 0 2px 5px rgba(74, 144, 226, 0.3); } .cf7-radio input[type="radio"] + span.wpcf7-list-item-label:hover { background-color: var(--hover-bg); transform: translateY(-1px); } /* 复选框样式 */ .cf7-checkbox-group { margin-bottom: 20px; } .cf7-checkbox-label { display: block; margin-bottom: 12px; font-weight: 500; color: #555; } .cf7-checkbox input[type="checkbox"] { position: absolute; opacity: 0; width: 0; height: 0; } .cf7-checkbox span.wpcf7-list-item { display: block; margin-bottom: 15px; } .cf7-checkbox input[type="checkbox"] + span.wpcf7-list-item-label { position: relative; padding-left: 35px; cursor: pointer; line-height: 22px; color: #666; font-size: 15px; display: inline-block; min-height: 22px; } .cf7-checkbox input[type="checkbox"] + span.wpcf7-list-item-label:before { content: ''; position: absolute; left: 0; top: 0; width: 22px; height: 22px; border: 2px solid var(--border-color); border-radius: 4px; background-color: #fff; transition: all 0.2s ease; box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); } .cf7-checkbox input[type="checkbox"]:checked + span.wpcf7-list-item-label:before { background-color: var(--primary-color) !important; border-color: var(--primary-color) !important; } .cf7-checkbox input[type="checkbox"]:checked + span.wpcf7-list-item-label:after { content: ''; position: absolute; left: 7px; top: 3px; width: 6px; height: 12px; border: solid white; border-width: 0 2px 2px 0; transform: rotate(45deg); } .cf7-checkbox input[type="checkbox"] + span.wpcf7-list-item-label:hover:before { border-color: var(--primary-color); } /* 提交按钮样式 */ .cf7-submit-wrapper { text-align: center; margin-top: 30px; margin-bottom: 20px; } .cf7-submit { background-color: var(--primary-color); color: #fff; border: none; border-radius: 8px; padding: 16px 50px; font-size: 17px; font-weight: 500; cursor: pointer; transition: all 0.3s ease; box-shadow: 0 4px 12px rgba(74, 144, 226, 0.25); position: relative; overflow: hidden; } .cf7-submit:hover { background-color: var(--primary-hover); transform: translateY(-2px); box-shadow: 0 6px 15px rgba(74, 144, 226, 0.3); } .cf7-submit:active { transform: translateY(0); } .cf7-submit::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent); animation: shine 2s infinite; } @keyframes shine { 100% { left: 100%; } } /* 表单验证反馈 */ .wpcf7-not-valid-tip { color: var(--error-color); font-size: 13px; margin-top: 5px; display: block; } .wpcf7-response-output { padding: 15px 20px; margin: 20px 0; border-radius: 6px; font-size: 15px; line-height: 1.6; } .wpcf7-mail-sent-ok { background-color: #e8f5e9; color: #2e7d32; border: 1px solid #c8e6c9; } .wpcf7-mail-sent-ng { background-color: #ffebee; color: #c62828; border: 1px solid #ffcdd2; } .wpcf7-validation-errors { background-color: #fff8e1; color: #f57f17; border: 1px solid #ffecb3; }
    ——————————基础信息——————————
    [select select-824 "<3 个月" "3-6 个月" "6-12 个月" "1 年以上"]
    ——————————居住环境评价(1-5 分,1 为非常不满意,5 为非常满意)——————————
    ——————————餐饮服务评价——————————
    ——————————医疗与护理服务——————————
    ——————————文化与社交活动——————————
    ——————————员工服务评价——————————
    ——————————综合评价与建议——————————

    您也可以通过手机扫码提交:

    [kaya_qrcode title_align=”alignnone” dynamic_content=”0″ ecclevel=”L” border=”4″ color=”#000000″ bgcolor=”#FFFFFF” align=”alignnone” css_shadow=”0″ no_css=”0″ new_window=”0″ content_url=”0″ download_button=”0″ download_align=”alignnone”]