/* 更改表单输入字段的样式 */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="url"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="number"],
.wpcf7 input[type="date"],
.wpcf7 textarea,
.wpcf7 select {
    width: 100%;
    padding: var(--space-xs);
    margin-bottom: var(--space-s);
    border: 2px solid var(--col-line-2);
    border-radius: var(--radius-2);
    font-size: var(--font-0);
}
.wpcf7 .country-select.inside{
    margin-bottom: var(--space-s);
}

/* 更改提交按钮的样式 */
.wpcf7 input[type="submit"] {
    background-color: var(--col-zhuse); /* 绿色背景 */
    color: var(--col-b); /* 白色文字 */
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.wpcf7 input[type="submit"]:hover {
    background-color: #45a049; /* 悬停时的背景颜色 */
}

.wpcf7 label {
    color: var(--col-h);
}
/* 更改错误消息的样式 */
.wpcf7 .wpcf7-not-valid-tip {
    color: red; /* 红色错误提示 */
    font-weight: bold;
}

/* 更改成功消息的样式 */
.wpcf7-mail-sent-ok {
    color: green; /* 绿色成功提示 */
    font-weight: bold;
}

::placeholder {
    color: var(--col-h-text);
    opacity: 1; /* 不透明度调整，默认情况下占位符是半透明的 */
    font-family: Georgia, serif;
    font-size: var(--font--1);
}

.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="url"]:focus,
.wpcf7 input[type="tel"]:focus,
.wpcf7 input[type="number"]:focus,
.wpcf7 input[type="date"]:focus,
.wpcf7 textarea:focus {
    border: 2px solid var(--col-zhuse); /* 输入时的边框颜色 */
    outline: none; /* 移除默认的外边框 */
}
