/* 移动端目的地页面签证和定制表单样式 */

/* 签证模块样式 */
.m-visa-section {
    background: #dc2626;
    background: -webkit-gradient(linear, left top, right bottom, color-stop(0%,#dc2626), color-stop(50%,#991b1b), color-stop(100%,#b91c1c));
    background: -webkit-linear-gradient(135deg, #dc2626 0%,#991b1b 50%,#b91c1c 100%);
    background: linear-gradient(135deg, #dc2626 0%,#991b1b 50%,#b91c1c 100%);
    border-radius: 12px;
    margin: 10px 12px;
    padding: 14px;
    position: relative;
    overflow: hidden;
}

.m-visa-header {
    margin-bottom: 12px;
}

.m-visa-title {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    display: block;
}

.m-visa-subtitle {
    font-size: 12px;
    color: rgba(255,255,255,0.8);
    display: block;
    margin-top: 2px;
}

.m-visa-products {
    margin-bottom: 8px;
}

.m-visa-product-card {
    display: block;
    padding: 10px;
    background: rgba(255,255,255,0.12);
    border-radius: 8px;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.15);
    margin-bottom: 8px;
}

.m-visa-product-card:last-child {
    margin-bottom: 0;
}

.m-visa-product-card:active {
    background: rgba(255,255,255,0.2);
}

.m-visa-product-info {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.m-visa-product-name {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

.m-visa-product-price {
    font-size: 16px;
    font-weight: 700;
    color: #ffd700;
}

.m-visa-product-price strong {
    font-size: 18px;
}

.m-visa-countries {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: -4px;
}

.m-visa-country {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    width: 25%;
    padding: 6px 4px;
    text-decoration: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.m-visa-country:active {
    opacity: 0.7;
}

.m-visa-country img {
    width: 36px;
    height: 24px;
    border-radius: 4px;
    object-fit: cover;
    background: #fff;
    margin-bottom: 4px;
}

.m-visa-country span {
    font-size: 11px;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

/* 定制表单样式 */
.m-plan-section {
    background: linear-gradient(135deg, #c0392b 0%, #96281b 100%);
    border-radius: 12px;
    margin: 10px 12px;
    padding: 16px;
    position: relative;
    overflow: hidden;
}

.m-plan-header {
    margin-bottom: 12px;
}

.m-plan-header h3 {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 4px;
}

.m-plan-header p {
    font-size: 12px;
    color: rgba(255,255,255,0.85);
    margin: 0;
}

.m-plan-form {
    background: rgba(255,255,255,0.15);
    border-radius: 10px;
    padding: 12px;
    border: 1px solid rgba(255,255,255,0.25);
}

.m-plan-row {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    margin-bottom: 10px;
}

.m-plan-input {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    flex: 1;
    padding: 9px 10px;
    margin-right: 8px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 6px;
    font-size: 13px;
    color: #fff;
    background: rgba(255,255,255,0.15);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.m-plan-input:last-child {
    margin-right: 0;
}

.m-plan-input::placeholder {
    color: rgba(255,255,255,0.6);
}

.m-plan-input:focus {
    outline: none;
    border-color: rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.25);
}

.m-plan-btns {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    margin-bottom: 10px;
}

.m-plan-btn {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    flex: 1;
    padding: 8px 12px;
    margin-right: 8px;
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 20px;
    font-size: 12px;
    color: rgba(255,255,255,0.85);
    text-align: center;
    cursor: pointer;
}

.m-plan-btn:last-child {
    margin-right: 0;
}

.m-plan-btn.active {
    background: rgba(255,255,255,0.95);
    border-color: #fff;
    color: #c0392b;
    font-weight: 600;
}

.m-plan-submit {
    display: block;
    width: 100%;
    padding: 11px;
    background: rgba(255,255,255,0.95);
    color: #c0392b;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 1px;
}

.m-plan-submit:active {
    background: #fff;
    opacity: 0.9;
}

/* 签证入口样式 */
.m-visa-entry {
    display: block;
    margin: 10px 12px;
    padding: 12px 14px;
    background: #fff;
    border-radius: 10px;
    text-decoration: none;
    -webkit-box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.m-visa-entry-icon {
    font-size: 18px;
    margin-right: 8px;
}

.m-visa-entry-text {
    font-size: 14px;
    color: #333;
}

.m-visa-entry-arrow {
    float: right;
    font-size: 18px;
    color: #ccc;
}
