 /* 基础重置 */
 *{
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 /* 统一字体 */
 html {
     font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
     line-height: 1.6;
     font-size: 16px;
     color: #333;
 }
body{
    background: none !important;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
 /* 移除列表样式 */
 ul,
 li,
 ol {
     list-style: none;
 }

 /* 移除链接下划线并设置颜色 */
 a {
     text-decoration: none;
     color: #007bff;
 }

 a:hover {
     text-decoration: none;
 }

 /* 图片自适应 */
 img {
     max-width: 100%;
     height: auto;
     display: inline-block;
     /* width: 100%; */
 }

 /* 表单元素样式统一 */
 input,
 button,
 textarea,
 select {
     font-family: inherit;
     font-size: inherit;
     line-height: inherit;
 }

 p,
 h1,
 h2,
 h3,
 h4,
 h5,
 h6 {
     overflow-wrap: break-word;
 }

 /* 设置body背景和最小高度 */
 body {
     background-color: #fff;
     min-height: 100vh;
     /* padding: 20px; */
 }

 .top_img {
     height: 384px;
     width: 1920px;
 }