/* 弹窗表单样式 */
.layer-modal {
    padding: 20px;
    border-radius: 10px;
}

.layer-modal .infoTalleIntro {
    text-align: center;
    margin-bottom: 20px;
}

.layer-modal h3 {
    color: #333;
    font-size: 24px;
    margin-bottom: 15px;
}

.layer-modal h4 {
    color: #666;
    font-size: 18px;
    margin-bottom: 8px;
}

.layer-modal h5 {
    color: #999;
    font-size: 16px;
}

.layer-modal p {
    font-weight: bold;
    margin: 18px 0 12px;
    color: #444;
    font-size: 16px;
}

.layer-modal ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -5px 15px;
}

.layer-modal li {
    width: 16%;
    padding: 0 5px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 25px;
    cursor: pointer;
}

.layer-modal input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}
.layer-modal li span {
    position: relative;
    padding-left: 30px;
    line-height: 20px;
}

.layer-modal li span:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border: 2px solid #1890ff;
    border-radius: 50%;
    background: #fff;
}

.layer-modal input[type="radio"]:checked + span:after,
.layer-modal span.checked:after {
    content: "";
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #1890ff;
    display: block !important;
    z-index: 1;
}

.layer-modal li {
    position: relative;
}

.layer-modal input[type="radio"] {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 2;
    cursor: pointer;
}

.layer-modal li:hover span:before {
    border-color: #40a9ff;
}

.layer-modal input[type="radio"]:focus + span:before {
    box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
}

.layer-modal .contact_information {
    margin-bottom: 15px;
}

.layer-modal .contact_information span {
    display: block;
    margin-bottom: 5px;
    color: #555;
}

.layer-modal input[type="text"] {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.3s;
}

.layer-modal input[type="text"]:focus {
    border-color: #1890ff;
    box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
}

.layer-modal .layui-layer-confirm {
    background: #1890ff;
    color: white;
    text-align: center;
    padding: 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
}

.layer-modal .layui-layer-confirm:hover {
    background: #40a9ff;
}

.layer-modal .submitTips {
    text-align: center;
    color: #999;
    margin-top: 10px;
    font-size: 12px;
}

.colorRed {
    color: #f5222d;
}
