* {
  margin: 0;
  padding: 0;
  font-family: Arial, Arial;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

img{
    max-width: 100%;
}

.info {
  background-image: url(./bg.png);
  background-size: cover;
  background-position: center top;
  padding-top: 47px;
  padding-bottom: 101px;
}

.main {
  width: 1362px;
  margin: 0 auto;
}

.bread a {
  font-weight: 400;
  font-size: 18px;
  color: #707070;
}

.bread a:last-child {
  color: #000;
}

.content {
  display: flex;
  align-items: flex-start;
  margin-top: 38px;
  gap: 26px;
}

.content .left {
  width: 358px;
  height: 393px;
  background: #FFFFFF;
  border-radius: 10px 10px 10px 10px;
  border: 1px solid #E8E8E8;
  padding: 33px 10px 36px;
}

.content .left .title {
  font-weight: bold;
  font-size: 30px;
  color: #000000;
  text-transform: uppercase;
  margin-bottom: 17px;
}

.content .left .list a {
  width: 100%;
  height: 50px;
  background: #F0F0F0;
  border-radius: 5px 5px 5px 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 400;
  font-size: 18px;
  color: #707070;
  padding: 0 18px 0 7px;
  margin-bottom: 6px;
}

.content .left .list a:last-child {
  margin-bottom: 0;
}

.content .left .list a.active,
.content .left .list a:hover {
  background: linear-gradient(180deg, #545BAC 0%, #2B5EA4 100%);
  color: #FFFFFF;
}

.content .left .list a.active img,
.content .left .list a:hover img {
  filter: brightness(0) invert(1);
}

.content .right {
  width: 981px;
  background: #FFFFFF;
  border-radius: 10px 10px 10px 10px;
  border: 1px solid #E8E8E8;
  padding: 36px 25px 70px;
}

.content .right .title {
  font-weight: bold;
  font-size: 25px;
  color: #00419A;
  padding-bottom: 17px;
  border-bottom: 1px solid #C7C7C7;
}

.content .right .desc {
  margin-top: 25px;
  font-weight: 400;
  font-size: 18px;
  color: #000000;
  line-height: 35px;
}

.content .right .desc table{
    border-collapse: collapse;
}

.content .right .desc:not(:last-child) {
  padding-bottom: 30px;
  border-bottom: 1px solid #C7C7C7;
}

.content .right .desc .tit {
  font-weight: bold;
  font-size: 20px;
  color: #000000;
  margin-bottom: 30px;
  line-height: 35px;
}

.content .right .desc1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.content .right .desc1 .text {
  width: 352px;
}

.content .right .desc1 .text .it {
  display: flex;
  gap: 6px;
  font-weight: 400;
  font-size: 16px;
  color: #000000;
  line-height: 35px;
  align-items: flex-start;
}

.content .right .desc1 .text .it img {
  object-fit: contain;
  margin-top: .6rem;

}

.content .right .desc1 .img {
  width: 521px;
  height: 270px;
  border-radius: 10px;
  overflow: hidden;
}

.content .right .desc1 .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content .right .desc2 .lis {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.content .right .desc2 .lis .it {
  width: 300px;
  height: 67px;
  background: #F4F4F4;
  border-radius: 5px 5px 5px 5px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 400;
  font-size: 20px;
  color: #434343;
  padding: 10px;
}

.content .right .desc2 .lis .it::before {
  content: "";
  width: 9px;
  height: 9px;
  background: #00419A;
  border-radius: 50%;
}