html, body, dd, dl, fieldset, form, h1, h2, h3, h4, h5, h6, input, legend, ol, p, select, td, textarea, th, ul {
  margin: 0;
  padding: 0
}

body , html{
  max-width:  120rem;
  margin: 0 auto;
}

body {
  font-family:Verdana,Genva,Arial,sans-serif;
  background: #fff;
  color: #202226;
}

em {
  font-style: normal
}

li {
  list-style: none
}

img {
  border: 0;
  vertical-align: middle
}

table {
  border-collapse: collapse;
  border-spacing: 0
}

p {
  word-wrap: break-word
}

a{
  all: unset;
}

.minContainer{
  margin: 0 auto;
  width: 87.5rem;
}

.ellipsis-1 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ellipsis-2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ellipsis-3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ellipsis-4{
  height: 6rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ellipsis-8 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 8;
  overflow: hidden;
  text-overflow: ellipsis;
}

.title-container{
  width: 100%;
  position: relative;
  height: 12rem;
  text-align: center;
}
.title-container .name{
  display: inline-block;
  text-align: center;
  margin: 4rem auto 0.5rem auto;
  font-size: 2.5rem;
  position: relative;
  font-weight: 600;
}
.title-container .name::before{
  content: '';
  position: absolute;
  width: 3.75rem;
  height: 1px;
  background-color: #A0A0A0;
  top: 50%;
  left: -5rem;
  transform: translateY(-50%);
}
.title-container .name::after{
  content: '';
  position: absolute;
  width: 3.75rem;
  height: 1px;
  background-color: #A0A0A0;
  top: 50%;
  right: -5rem;
  transform: translateY(-50%);
}
.title-container .desc{
  margin: 0 auto;
  text-align: center;
  color: #005BAC;
  font-weight: 600;
  font-size: 1.4375rem;
}
.title-container .more{
  position: absolute;
  right: 0rem;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  margin-right: 3.125rem;
  color: #0152B2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.title-container .more img{
  width: 2.5rem;
  height: 2.5rem;
  margin-right: .375rem;
}

.title-container .more span::before{
  position: absolute;
  content: '';
  width: 2.5rem;
  height: 1px;
  background-color: #0152B2;
  right: -3.125rem;
  top: 50%;
  transform: translateY(-50%);
}

.title-container .more::before{
  position: absolute;
  content: '';
  width: .4375rem;
  height: .4375rem;
  background: rgba(1,82,178);
  border-radius: 50px;
  z-index: 10;
  right: -3.45rem;
  top: 50%;
  transform: translateY(-50%);
}

.title-container .more::after{
  position: absolute;
  content: '';
  width: .8125rem;
  height: .8125rem;
  background: rgba(1,82,178,0.5);
  border-radius: 50px;
  z-index: 9;
  right: -3.625rem;
  top: 50%;
  transform: translateY(-50%);
}