html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  text-decoration: none;
  outline: none;
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 0;
  box-sizing: border-box;
  user-select: none;
  list-style: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
html {
  /* Prevent font scaling in landscape while allowing user zoom */
  text-size-adjust: 100%;
  /* fix font family display error on different browsers */
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-width: 1200px;
}
a {
  text-decoration: none;
  color: black;
}
body {
  overflow-x: hidden;
}
.content-wrapper {
  width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}
section {
  padding: 60px 0;
}
section h2 {
  font-size: 50px;
  color: #00ceed;
  text-align: center;
  font-weight: normal;
}
section h3 {
  font-size: 16px;
  color: #5e5e5e;
  text-align: center;
  font-weight: normal;
  margin-top: 5px;
}
.more-btn {
  margin-top: 60px;
  text-align: center;
}
.more-btn .text {
  color: #00ceed;
  display: inline-block;
  font-size: 24px;
  padding: 8px 60px;
  border: 1px solid #00ceed;
  border-radius: 30px;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.more-btn .text:hover {
  background-color: #00ceed;
  color: white;
}
.section-banner {
  padding: 0;
  overflow: hidden;
}
.section-banner .img-container {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 1920px;
}
.section-banner .infos {
  margin-top: 30px;
  text-align: justify;
  text-justify: inter-ideograph;
}
.section-banner .infos:after {
  content: "";
  width: 100%;
  display: inline-block;
}
.section-banner .infos span {
  display: inline-block;
  font-size: 20px;
  color: #7d7d7d;
}
.section-banner .infos span:nth-child(2) {
  margin-right: 200px;
}
body {
  background-color: #f7f7f7;
}
.section-list {
  padding-bottom: 80px;
}
.section-list .article-list li {
  background-color: white;
  margin-bottom: 16px;
  padding: 40px 20px;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.section-list .article-list li:hover {
  background-color: #00ceed;
}
.section-list .article-list li:hover .infos h5,
.section-list .article-list li:hover .infos p {
  color: white;
}
.section-list .article-list li:hover .infos .extra-info span {
  color: white;
}
.section-list .article-list li:hover .infos .detail-btn {
  border-color: white;
  color: white;
}
.section-list .article-list li .cover {
  width: 310px;
  display: inline-block;
  vertical-align: middle;
}
.section-list .article-list li .infos {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin-left: 50px;
  width: 800px;
}
.section-list .article-list li .infos h5 {
  font-size: 24px;
  font-weight: normal;
  color: #00ceed;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.section-list .article-list li .infos p {
  width: 85%;
  font-size: 16px;
  color: #7d7d7d;
  margin-top: 25px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.section-list .article-list li .infos .extra-info {
  margin-top: 35px;
}
.section-list .article-list li .infos .extra-info span {
  font-size: 16px;
  color: #7d7d7d;
  display: inline-block;
  margin-right: 40px;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.section-list .article-list li .infos .detail-btn {
  position: absolute;
  bottom: 0;
  right: 0;
  color: white;
  border-radius: 20px;
  background-color: #00ceed;
  border: 1px solid #00ceed;
  font-size: 18px;
  padding: 4px 15px;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.section-list .pagination {
  text-align: center;
  margin-top: 80px;
}
.section-list .pagination li {
  display: inline-block;
  margin: 0 5px;
  border: 1px solid #7d7d7d;
  border-radius: 4px;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.section-list .pagination li:hover {
  background-color: #00ceed;
  border-color: #00ceed;
}
.section-list .pagination li:hover a {
  color: white;
}
.section-list .pagination li a {
  display: block;
  color: #7d7d7d;
  font-size: 16px;
  padding: 4px 12px;
  transition: color 0.3s ease;
}
