html {
  font-family: system-ui, Avenir, Helvetica, Arial, sans-serif;
  line-height: 1.5;
  font-weight: 400;

  color-scheme: light dark;
  color: #2b2b2b;
  background-color: #fff;

  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  display: flex;
  flex-direction: column;
  flex: 1;
  background-color: #f5f5f5;
  color: #2b2b2b;
  line-height: 1.6;
  width: 100%;
  min-height: 100vh;
  height: auto;
  margin: 0 auto;
}

.container {
  display: flex;
  flex-direction: row;
  margin: 0 auto;
  padding: 0 15px;
}

/* 头部样式 */
header {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: #1a73e8;
}
.headline {
  display: flex;
  background: #fff;
  flex-direction: column;
  max-width: 1000px;
  margin: 0 auto 20px;
  border-radius: 10px;
  padding: 20px 40px;
}

.headline-summary {
  margin-bottom: 15px;
  text-indent: 2em;
}

.headline-img {
  display: flex;
  width: 80%;
  object-fit: cover;
  margin: auto;
}
/* 底部样式 */

.footer-section {
  background: #000 !important;
  padding: 3em !important;
  /* position: absolute;
  bottom: 0;
  left: 0;
  right: 0; */
}
.company-info {
  color: #fff;
  display: flex;
  justify-content: center;
}

.headline-title {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
}

.headline-content p {
  margin-bottom: 18px;
  text-indent: 2em;
  font-size: 20px;
}
.headline-italics {
  -webkit-transform: skew(-10deg); /* for Chrome||Safari */
  -ms-transform: skew(-10deg); /* for IE */
  -moz-transform: skew(-10deg); /* for Firefox */
  -o-transform: skew(-10deg); /* for Opera */
  font-weight: bold;
}
