* {
    margin: 0;
    padding: 0;
    -webkit-touch-callout:none;
    -webkit-user-select:none;
    -webkit-tap-highlight-color:transparent;
}
body{background: linear-gradient(to bottom, white 90%, rgba(255,255,255,0) 110%);
    
    min-height: 100vh; /* 确保渐变覆盖整个视口高度 */}
ul{list-style-type: none}
a {text-decoration: none;/* color: #fff; */}

/*模拟的标题*/
.header{
    z-index: 9990;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    line-height: 16px;
    padding-top: 12px;
    text-align: center;
     background-color: #FFF;
    border-bottom: 1px solid #eee;
}
.header .btn-left{
    position: absolute;
    top: 0.6em;
    left: 0;
    padding:12px 12px 0 12px;
    /* color: #fff !important; */
}
.header p{
    /* color: #fff; */
    padding-bottom:0.8em;
    padding-top:0.6em;
}
.header .btn-right{
    position: absolute;
    top: 0;
    right: 0;
    padding:12px 8px;
}
.header .tip{
    margin-top: 4px;
    font-size: 12px;
    color: gray;
}

.mescroll-bar::-webkit-scrollbar-thumb{
    background: transparent !important;
}
video::-webkit-media-controls {
    display:none !important;
  }
  .mescroll-bar::-webkit-scrollbar{
      width: 0;
  }
  p{
      color: #4a4a4a;
  }
  
  .index-bg{ background:url(../image/bg.jpg) repeat;}
.in-search {
        
        width: 100%; /* 根据需要设置宽度 */
        max-width: 500px; /* 最大宽度限制 */
    }
    
    .in-search form{
        width: 100%; /* 根据需要设置宽度 */
        display: flex; /* 使用flex布局让子元素并排 */
    }
    
    .in-search-input {
        flex: 1; /* 输入框占据剩余空间 */
        height: 40px; /* 设置高度 */
        padding: 0 15px; /* 内边距 */
        border: 1px solid #ddd; /* 边框 */
        border-right: none; /* 去掉右侧边框，与按钮无缝连接 */
        border-radius: 4px 0 0 4px; /* 左上和左下圆角 */
        outline: none; /* 去掉焦点轮廓 */
        font-size: 14px; /* 字体大小 */
    }
    
    .in-search-input:focus {
        border-color: #5b79e8; /* 焦点时边框颜色 */
    }
    
    .in-search-button {
        width: 80px; /* 按钮宽度 */
        height: 40px; /* 与输入框同高 */
        background-color: #5b79e8; /* 背景色 */
        color: white; /* 文字颜色 */
        border: none; /* 去掉边框 */
        border-radius: 0 4px 4px 0; /* 右上和右下圆角 */
        cursor: pointer; /* 鼠标指针样式 */
        font-size: 14px; /* 字体大小 */
        transition: background-color 0.3s; /* 过渡效果 */
    }
    
    .in-search-button:hover {
        background-color: #45a049; /* 鼠标悬停颜色 */
    }
    
.footer-ad img{ max-width:100%;}