/* 移动端基础样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 0.28rem;
    line-height: 1.5;
    color: #333;
    background: #f5f5f5;
}

/* Banner样式 */
.banner {
    position: relative;
    background: #FE7434;
    padding: 0.3rem 0;
}

.banner-site {
    text-align: center;
    padding: 0.2rem;
}

.banner-site i {
    display: inline-block;
    padding: 0.2rem 0.4rem;
    background: linear-gradient(180deg, #F7EBCE, #F4C27C);
    border-radius: 0.38rem;
    color: #FF6400;
    font-size: 0.32rem;
    font-weight: bold;
}

.banner_03 {
    text-align: center;
    margin-top: 0.3rem;
}

.banner_03 i {
    color: #fff;
    font-size: 0.28rem;
}

/* 地区选择器 */
.bannerArea-box {
    position: absolute;
    top: 0.2rem;
    right: 0.3rem;
    width: 2rem;
    z-index: 10;
}

.bannerArea-show {
    background: #F6DBCB;
    padding: 0.1rem 0.2rem;
    border-radius: 0.1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bannerArea-hide {
    display: none;
    background: #F6DBCB;
    margin-top: 0.1rem;
    border-radius: 0.1rem;
    max-height: 5rem;
    overflow-y: auto;
}

.bannerArea-hideUl li {
    padding: 0.2rem;
    text-align: center;
}

/* 表单样式 */
.mainBox {
    padding: 0.3rem;
}

.srcx-box {
    background: #fff;
    border-radius: 0.2rem;
    padding: 0.4rem 0.3rem;
}

.srcx-md1H4 {
    text-align: center;
    font-size: 0.36rem;
    margin-bottom: 0.4rem;
}

.srcx-md1H4 em {
    color: #FF3000;
    margin-left: 0.2rem;
}

.srcxForm-item {
    margin-bottom: 0.3rem;
}

.srcxForm-itemR {
    position: relative;
    background: #f5f5f5;
    border-radius: 0.1rem;
    padding: 0.2rem;
}

.srcxForm-itemR input {
    width: 100%;
    border: none;
    background: none;
    font-size: 0.28rem;
    padding: 0.1rem;
}

.srcxForm-itemSend {
    position: absolute;
    right: 0.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: #FF6600;
    font-size: 0.26rem;
}

.srcxWdl-btn a {
    display: block;
    background: linear-gradient(90deg, #F51E29, #FF4734);
    color: #fff;
    text-align: center;
    padding: 0.25rem;
    border-radius: 0.5rem;
    font-size: 0.32rem;
    font-weight: bold;
    margin-top: 0.4rem;
    text-decoration: none;
}

/* 适配暗黑模式 */
@media (prefers-color-scheme: dark) {
    body {
        background: #1a1a1a;
        color: #fff;
    }
    
    .srcx-box {
        background: #2a2a2a;
    }
    
    .srcxForm-itemR {
        background: #333;
    }
}