/* 横幅详细样式 */
.banner .banner_box {
    text-align: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.banner .banner_box h1 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.banner .banner_box .text {
    font-size: 18px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.banner .banner_box .text b {
    font-weight: bold;
    margin: 0 5px;
}

/* 搜索框 */
.banner .s_box {
    width: 800px;
    height: 68px;
    background-color: #fff;
    border-radius: 34px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.banner .s_box input {
    width: 500px;
    height: 100%;
    border: none;
    background: none;
    outline: none;
    padding: 0 30px 0 55px;
    font-size: 18px;
    color: #333;
    border-radius: 34px 0 0 34px;
}

.banner .s_box .s_btn {
    width: 300px;
    height: 68px;
    background-color: #00c292; /* 更鲜亮的绿色 */
    border-radius: 0 34px 34px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    position: absolute;
    right: 0;
}

.banner .s_box .s_btn:hover {
    background-color: #00b085;
}

.banner .s_box .s_btn i {
    font-size: 22px;
    color: #fff;
    margin-right: 10px;
}

.banner .s_box .s_btn h2 {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
}

.banner .s_box .fa-search {
    position: absolute;
    left: 25px;
    color: #aaa;
    font-size: 18px;
}

/* 调整输入框样式以匹配图片 */
.banner .s_box input::placeholder {
    color: #999;
}

/* 热门模板标签 */
.banner .s_hot {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

.banner .s_hot b {
    font-weight: bold;
    margin-right: 10px;
}

.banner .s_hot a {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 5px 15px;
    border-radius: 15px;
    margin: 0 5px 10px;
    font-size: 14px;
    transition: all 0.3s;
}

.banner .s_hot a:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

/* 特点列表 */
.banner .tip_list {
    max-width: 900px;
    margin: 0 auto;
}

.banner .tip_list ul {
    display: flex;
    justify-content: space-between;
}

.banner .tip_list li {
    width: 23%;
    text-align: center;
}

.banner .tip_list h5 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner .tip_list h5 i {
    font-size: 18px;
    margin-right: 8px;
}

.banner .tip_list p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

/* 响应式调整 */
@media screen and (max-width: 992px) {
    .banner {
        padding-top: 100px;
    }
    
    .banner .s_box {
        width: 90%;
        max-width: 560px;
    }
    
    .banner .tip_list ul {
        flex-wrap: wrap;
    }
    
    .banner .tip_list li {
        width: 48%;
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 768px) {
    .banner {
        padding-top: 80px;
        height: auto;
        padding-bottom: 40px;
    }
    
    .banner .banner_box h1 {
        font-size: 28px;
    }
    
    .banner .banner_box .text {
        font-size: 16px;
    }
    
    .banner .s_box {
        height: 50px;
    }
    
    .banner .s_box input {
        width: 55%;
    }
    
    .banner .s_box .s_btn {
        width: 40%;
        height: 40px;
    }
    
    .banner .tip_list li {
        width: 100%;
    }
}
