.arrow {
  display: inline-block;
  width: 60px;
  height: 10px;
  position: relative;
  transition: all 0.5s;
}

.arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 100%;
  border-bottom: 1px solid white;
}

.arrow::before {
  content: "";
  position: absolute;
  right: 0;
  top: 5px;
  transform: rotate(45deg);
  transform-origin: right;
  display: block;
  width: 8px;
  border-bottom: 1px solid white;
}

.showBox {
  display: none;
}

header {
  position: sticky;
  top: 0;
  z-index: 80;
  box-shadow: 1px 1px 2px #c9c9c9;
  background-color: white;
}

header .box1 {
  background-color: var(--color-Primary);
  padding: 5px 0;
  width: 100%;
  text-align: right;
}

header .box1 button {
  background-color: var(--color-Primary2);
  color: white;
  border-radius: 50px;
  padding: 3px 20px;
  font-size: 0.9rem;
  transition: all 0.5s;
}

header .box1 button:hover {
  background-color: var(--color-Primary3);
  color: var(--color-Primary);
}

header .box2 {
  padding: 15px 0;
  position: relative;
}

header .box2 .box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 0px) and (max-width: 700px) {
  header .box2 .box {
    gap: 15px;
  }
}

header .box2 .logo {
  width: 150px;
}

header .box2 .mobBtn .icon {
  font-size: 32px;
}

header .box2 .menuBox {
  display: flex;
  align-items: center;
  gap: 20px;
}

@media (min-width: 0px) and (max-width: 700px) {
  header .box2 .menuBox {
    display: none;
    flex-direction: column;
    position: absolute;
    background-color: #fff;
    width: 100%;
    left: 0;
    top: 100%;
    padding: 15px 0;
    box-shadow: 0 1px 3px #b6b6b6;
  }
  header .box2 .menuBox a {
    display: block;
    text-align: center;
    padding: 10px 0;
  }
}

header .box2 .menuBox li {
  font-size: 1rem;
  text-align: center;
  cursor: pointer;
}

@media (min-width: 0px) and (max-width: 700px) {
  header .box2 .menuBox li {
    padding: 10px 0;
  }
}

header .box2 .menuBox li:hover {
  color: var(--color-Primary);
}

header .box2 .menuBox .select {
  color: var(--color-Primary);
  font-weight: bold;
}

.module1 {
  background-color: var(--color-Primary3);
}

.module1 .container {
  height: 490px;
  overflow: hidden;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module1 .container {
    height: auto;
  }
}

.module2_1 {
  padding: 50px 0;
}

.module2_1 .container h2 {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}

.module2_1 .container h3 {
  font-size: 1.4rem;
  text-align: center;
  line-height: 2.2rem;
}

.module2_1 .container h3 span {
  color: var(--color-Primary);
}

.module2_1 .container ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 50px 0;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module2_1 .container ul {
    grid-template-columns: repeat(1, 1fr);
  }
}

.module2_1 .container ul li {
  background-color: var(--color-Primary3);
  padding: 30px;
  box-sizing: border-box;
  text-align: center;
  transition: all 0.5s;
}

.module2_1 .container ul li:hover {
  box-shadow: 2px 2px 20px #d4d4d4;
  transform: translateY(-10px);
}

.module2_1 .container ul li img {
  width: 30%;
  height: 80px;
  object-fit: contain;
}

.module2_1 .container ul li .t1 {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--color-Primary);
  margin-top: 15px;
  margin-bottom: 5px;
}

.module2_1 .container ul li .t2 {
  font-size: 1.05rem;
}

.module2_1 .container ul li .t3 {
  font-size: 1rem;
  line-height: 1.4rem;
}

.module2_1 .container .card {
  display: grid;
  grid-template-columns: 30% calc(70% - 30px);
  gap: 30px;
  background-color: var(--color-Primary3);
  padding: 5%;
  padding-bottom: 0px;
  transition: all 0.5s;
}

.module2_1 .container .card:hover {
  box-shadow: 2px 2px 20px #d4d4d4;
  transform: translateY(-10px);
}

@media (min-width: 0px) and (max-width: 700px) {
  .module2_1 .container .card {
    grid-template-columns: repeat(1, 1fr);
  }
}

.module2_1 .container .card .img {
  height: 100%;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  width: 100%;
}

.module2_1 .container .card .right {
  padding-bottom: 30px;
}

.module2_1 .container .card .right .t1 {
  font-size: 1.6rem;
  color: var(--color-Primary);
  font-weight: bold;
  margin-bottom: 10px;
}

.module2_1 .container .card .right .t2 {
  font-size: 1rem;
}

.module2_1 .container .card .right .box {
  margin-top: 20px;
}

.module2_1 .container .card .right .box img {
  width: 20px;
  margin-right: 10px;
}

.module2_1 .container .card .right .box p span {
  font-size: 1.6rem;
  font-weight: bold;
  color: var(--color-Primary2);
}

.module2_2 {
  padding: 50px 0;
}

.module2_2 .container .title {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 50px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module2_2 .container .title {
    flex-direction: column;
    gap: 5px;
  }
}

.module2_2 .container .title img {
  height: 34px;
  margin: 0px 10px;
}

.module2_2 .container ul {
  display: flex;
  justify-content: center;
  gap: 2%;
  margin-bottom: 20px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module2_2 .container ul {
    flex-direction: column;
    gap: 20px;
  }
}

.module2_2 .container ul li {
  width: 32%;
  background-color: var(--color-Primary3);
  text-align: center;
  padding: 30px 4%;
  box-sizing: border-box;
  transition: all 0.5s;
}

.module2_2 .container ul li:hover {
  box-shadow: 2px 2px 20px #d4d4d4;
  transform: translateY(-10px);
}

@media (min-width: 0px) and (max-width: 700px) {
  .module2_2 .container ul li {
    width: 100%;
  }
}

.module2_2 .container ul li img {
  width: 30%;
  height: 80px;
  object-fit: contain;
}

.module2_2 .container ul li .t1 {
  margin: 15px 0;
  font-weight: bold;
  font-size: 1.4rem;
  color: var(--color-Primary);
}

.module2_3 {
  padding: 50px 0;
}

.module2_3 .container h3 {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 50px;
}

.module2_3 .container ul li {
  display: flex;
  align-items: center;
  background-color: var(--color-Primary3);
  margin-bottom: 20px;
  position: relative;
  transition: all 0.5s;
}

.module2_3 .container ul li:hover {
  box-shadow: 2px 2px 20px #d4d4d4;
}

.module2_3 .container ul li .img {
  width: 30%;
  height: 250px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module2_3 .container ul li .img {
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 100%;
    opacity: 0.3;
  }
}

.module2_3 .container ul li .img img {
  height: 100%;
}

.module2_3 .container ul li .right {
  padding: 20px 0;
  position: relative;
  z-index: 3;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module2_3 .container ul li .right {
    padding: 20px;
    box-sizing: border-box;
  }
}

.module2_3 .container ul li .right .t1 {
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--color-Primary);
  margin-bottom: 20px;
}

.module2_3 .container ul li .right p {
  display: flex;
  align-items: center;
}

.module2_3 .container ul li .right p::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50px;
  margin-right: 8px;
  background-color: var(--color-Primary2);
}

.module3 {
  padding: 50px 0;
}

.module3 .container .title {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 50px;
}

.module3 .container .u1 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 20px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module3 .container .u1 {
    display: block;
  }
}

.module3 .container .u2 {
  display: grid;
  grid-template-columns: 30% 30%;
  justify-content: center;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module3 .container .u2 {
    display: block;
  }
}

.module3 .container ul {
  gap: 5%;
}

.module3 .container ul li {
  height: 100%;
  display: flex;
  flex-direction: column;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module3 .container ul li {
    height: auto;
    margin-bottom: 20px;
  }
}

.module3 .container ul li .img {
  text-align: center;
}

.module3 .container ul li .img img {
  width: 50px;
}

.module3 .container ul li:hover .t1 h4 {
  transform: translateY(10px);
  color: var(--color-Primary);
}

.module3 .container ul li:hover .box {
  box-shadow: 2px 2px 20px #d4d4d4;
}

.module3 .container ul li .t1 {
  position: relative;
  margin: 25px 0;
  text-align: center;
}

.module3 .container ul li .t1 p {
  position: absolute;
  font-size: 2.1rem;
  font-weight: bold;
  left: 50%;
  transform: translateX(-50%);
  color: #fbd8eb;
  margin: 0;
  z-index: 1;
  bottom: 10px;
  white-space: nowrap;
}

.module3 .container ul li .t1 h4 {
  position: relative;
  font-size: 1.6rem;
  font-weight: bold;
  margin: 0;
  z-index: 2;
  transition: all 0.5s;
}

.module3 .container ul li .box {
  background-color: var(--color-Primary3);
  padding: 20px;
  box-sizing: border-box;
  border-radius: 10px;
  height: 100%;
  transition: all 0.5s;
}

.module3 .container ul li .box div {
  display: flex;
  align-items: flex-start;
  margin: 20px 0;
  gap: 10px;
}

.module3 .container ul li .box div img {
  width: 20px;
  margin-top: 4px;
}

.module3 .container ul li .box div p {
  line-height: 1.6rem;
}

.module4 {
  padding: 50px 0;
  background-color: var(--color-Primary3);
}

.module4 h3 {
  font-size: 2rem;
  text-align: center;
  font-weight: bold;
  color: var(--color-Primary);
}

.module4_1 .container ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5%;
  padding: 40px 0;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module4_1 .container ul {
    flex-direction: column;
  }
}

.module4_1 .container ul li {
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.module4_1 .container ul li span {
  font-size: 2.2rem;
  font-weight: bold;
  color: var(--color-Primary2);
}

.module4_1 .container h4 {
  font-size: 1.6rem;
  text-align: center;
  font-weight: bold;
  color: var(--color-Primary);
}

.module4_2 .container .list {
  text-align: center;
  margin: 20px 0;
}

.module4_2 .container .list .t1 {
  font-size: 1.2rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module4_2 .container .list .t1 {
    flex-direction: column;
  }
}

.module4_2 .container .list .t1 p {
  margin: 0;
  display: flex;
  align-items: center;
}

.module4_2 .container .list .t1 span {
  font-size: 2rem;
  color: var(--color-Primary2);
  font-weight: bold;
}

.module4_2 .container .list .t2 span {
  color: var(--color-Primary);
}

.module4_3 .container .box {
  padding: 40px 0;
}

.module4_3 .container .box ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5%;
  padding: 5px 0;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module4_3 .container .box ul {
    flex-direction: column;
  }
}

.module4_3 .container .box ul li {
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.module4_3 .container .box ul li span {
  font-size: 2.2rem;
  font-weight: bold;
  color: var(--color-Primary2);
}

.module4_3 .container h4 {
  font-size: 1.6rem;
  text-align: center;
  font-weight: bold;
  color: var(--color-Primary);
}

.module5 {
  padding: 50px 0;
}

.module5 .container {
  text-align: center;
}

.module5 .container h3 {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
}

.module5 .container img {
  width: 100%;
}

.module5 .container .icon {
  width: 20px;
}

.module6 {
  padding: 50px 0;
  background-color: var(--color-Primary3);
}

.module6 .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.module6 .container h3 {
  display: flex;
  justify-content: center;
  font-weight: bold;
  font-size: 2rem;
  color: var(--color-Primary);
  background-color: #fff;
  padding: 15px 100px;
  border-radius: 100px;
  margin-bottom: 30px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module6 .container h3 {
    display: block;
    padding: 15px 20px;
  }
}

.module6 .container h3 span {
  color: var(--color-Primary2);
}

.module6 .container .card {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background-color: white;
  padding: 4%;
  margin: 15px 0;
  border-radius: 30px;
  transition: all 0.5s;
}

.module6 .container .card:hover {
  box-shadow: 2px 2px 20px #d4d4d4;
}

.module6 .container .card .left h4 {
  font-size: 1.6rem;
  color: var(--color-Primary);
  font-weight: bold;
}

.module6 .container .card .left p {
  font-size: 1rem;
  line-height: 1.6rem;
}

.module6 .container .card img {
  width: 60px;
}

.module7 {
  padding: 50px 0;
  background-color: var(--color-Primary3);
}

.module7 .container .title {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.module7 .container .title h3 {
  font-weight: bold;
  font-size: 2rem;
  color: var(--color-Primary);
  background-color: #fff;
  padding: 15px 100px;
  border-radius: 100px;
  margin-bottom: 30px;
}

.module7 .container .swiper {
  width: 100%;
  position: relative;
}

.module7 .container .swiper::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 40%;
  height: 100%;
  z-index: 9;
  pointer-events: none;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.7) 30%, transparent);
  background-image: -webkit-linear-gradient(to right, rgba(255, 255, 255, 0.7) 30%, transparent);
  background-image: -moz-linear-gradient(to right, rgba(255, 255, 255, 0.7) 30%, transparent);
  background-image: -o-linear-gradient(to right, rgba(255, 255, 255, 0.7) 30%, transparent);
}

@media (min-width: 0px) and (max-width: 700px) {
  .module7 .container .swiper::before {
    width: 30%;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.7), transparent);
    background-image: -webkit-linear-gradient(to right, rgba(255, 255, 255, 0.7), transparent);
    background-image: -moz-linear-gradient(to right, rgba(255, 255, 255, 0.7), transparent);
    background-image: -o-linear-gradient(to right, rgba(255, 255, 255, 0.7), transparent);
  }
}

.module7 .container .swiper::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  display: block;
  width: 40%;
  height: 100%;
  z-index: 9;
  pointer-events: none;
  background-image: linear-gradient(to left, rgba(255, 255, 255, 0.7) 30%, transparent);
  background-image: -webkit-linear-gradient(to left, rgba(255, 255, 255, 0.7) 30%, transparent);
  background-image: -moz-linear-gradient(to left, rgba(255, 255, 255, 0.7) 30%, transparent);
  background-image: -o-linear-gradient(to left, rgba(255, 255, 255, 0.7) 30%, transparent);
}

@media (min-width: 0px) and (max-width: 700px) {
  .module7 .container .swiper::after {
    width: 30%;
    background-image: linear-gradient(to left, rgba(255, 255, 255, 0.7), transparent);
    background-image: -webkit-linear-gradient(to left, rgba(255, 255, 255, 0.7), transparent);
    background-image: -moz-linear-gradient(to left, rgba(255, 255, 255, 0.7), transparent);
    background-image: -o-linear-gradient(to left, rgba(255, 255, 255, 0.7), transparent);
  }
}

.module7 .container .swiper .swiper-wrapper {
  height: auto;
  width: calc(100% / 6);
}

@media (min-width: 0px) and (max-width: 700px) {
  .module7 .container .swiper .swiper-wrapper {
    width: calc(100% / 2);
  }
}

.module7 .container .swiper .swiper-wrapper .swiper-slide {
  transform: scale(0.9);
  transition: all 0.5s;
}

.module7 .container .swiper .swiper-wrapper .swiper-slide-active,
.module7 .container .swiper .swiper-wrapper .swiper-slide-duplicate-active {
  transform: scale(1);
}

.module7 .container .swiper .swiper-wrapper img {
  width: 100%;
}

.module8 {
  padding: 50px 0;
  background-color: var(--color-Primary3);
}

.module8 .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 30px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module8 .container {
    grid-template-columns: repeat(1, 1fr);
  }
}

.module8 .container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.module8 .container .right h3 {
  font-size: 2rem;
  font-weight: bold;
  color: var(--color-Primary);
}

.module8 .container .right p {
  margin: 10px 0;
}

.module9 {
  padding: 50px 0;
  scroll-margin-top: 100px;
}

.module9 .container h3 {
  font-size: 2rem;
  font-weight: bold;
  color: var(--color-Primary);
  text-align: center;
}

.module9 .container .content {
  display: flex;
  gap: 5%;
  margin-top: 50px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module9 .container .content {
    flex-direction: column-reverse;
    gap: 20px;
  }
}

.module9 .container .content .leftBox {
  width: 60%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex-shrink: 0;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module9 .container .content .leftBox {
    width: 100%;
  }
}

.module9 .container .content .leftBox li {
  width: 100%;
}

.module9 .container .content .leftBox li a {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module9 .container .content .leftBox li a {
    display: grid;
    grid-template-columns: 150px calc(100% - 170px);
  }
}

.module9 .container .content .leftBox li a:hover img {
  transform: scale(1.1);
}

.module9 .container .content .leftBox li a .img {
  width: 200px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 10px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module9 .container .content .leftBox li a .img {
    width: 100%;
    height: 100%;
  }
}

.module9 .container .content .leftBox li a .img img {
  width: 100%;
  transition: all 0.5s;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module9 .container .content .leftBox li a .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.module9 .container .content .leftBox li a:hover .t1 {
  color: var(--color-Primary);
}

.module9 .container .content .leftBox li a .right {
  width: 100%;
  overflow: hidden;
}

.module9 .container .content .leftBox li a .t1 {
  width: 100%;
  font-size: 18px;
  color: #313131;
}

.module9 .container .content .leftBox li a .t2 {
  font-size: 14px;
  color: #adadad;
}

.module9 .container .content .leftBox li a .time {
  color: #adadad;
  margin: 0;
}

.module9 .container .content .rightBox {
  width: 35%;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module9 .container .content .rightBox {
    width: 100%;
  }
}

.module9 .container .content .rightBox a {
  width: 100%;
  display: block;
  background-color: var(--color-Primary);
  padding: 20px;
  box-sizing: border-box;
  color: white;
  overflow: hidden;
}

.module9 .container .content .rightBox a:hover .t2 {
  color: var(--color-Primary2);
}

.module9 .container .content .rightBox a:hover .arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 100%;
  border-bottom: 1px solid var(--color-Primary2);
}

.module9 .container .content .rightBox a:hover .arrow::before {
  content: "";
  position: absolute;
  right: 0;
  top: 5px;
  transform: rotate(45deg);
  transform-origin: right;
  display: block;
  width: 8px;
  border-bottom: 1px solid var(--color-Primary2);
}

.module9 .container .content .rightBox a:hover img {
  transform: scale(1.1);
}

.module9 .container .content .rightBox a .img {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  margin-bottom: 10px;
}

.module9 .container .content .rightBox a .img img {
  width: 100%;
  height: 100%;
  transition: all 0.5s;
  object-fit: cover;
}

.module9 .container .content .rightBox a .t1 {
  font-size: 16px;
}

.module9 .container .content .rightBox a .t2 {
  width: 100%;
  font-size: 20px;
  font-weight: bold;
  transition: all 0.5s;
}

.module9 .container .content .rightBox a .t3 {
  font-size: 15px;
}

.module9 .container .more {
  text-align: center;
  margin-top: 50px;
}

.module9 .container .more .common_btn_2 {
  border: 2px solid var(--color-Primary) !important;
  color: var(--color-Primary);
  font-weight: bold;
  padding: 10px 50px;
  border-radius: 50px;
  position: relative;
  transition: all 0.5s;
}

.module9 .container .more .common_btn_2:hover {
  padding-right: 70px;
  background-color: #fdfdfd;
}

.module9 .container .more .common_btn_2:hover .icon {
  opacity: 1;
  right: 40px;
  font-weight: bold;
}

.module9 .container .more .common_btn_2 .icon {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  opacity: 0;
  transition: all 0.5s;
}

.module10 {
  padding: 50px 0;
  min-height: calc(100vh - 180px);
}

.module10 .container .title {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module10 .container .title {
    font-size: 1.4rem;
    line-height: 2rem;
  }
}

.module10 .container .box1 {
  margin-top: 50px;
  padding-bottom: 10px;
  border-bottom: 1px solid #c5c5c5;
  color: #757575;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module10 .container .box1 {
    flex-direction: column;
    gap: 10px;
    margin-top: 30px;
  }
}

.module10 .container .box1 .left {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.module10 .container .box1 .right .icon {
  margin-right: 5px;
}

.module10 .container .box2 {
  margin-top: 30px;
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module10 .container .box2 {
    flex-direction: column;
  }
}

.module10 .container .box2 .content {
  font-size: 1rem;
  line-height: 1.6rem;
  width: 70%;
  flex-shrink: 0;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module10 .container .box2 .content {
    width: 100%;
  }
}

.module10 .container .box2 .content .pageBox {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.module10 .container .box2 .rightBox {
  background-color: #E1EAFD;
  width: 100%;
  padding: 20px;
}

.module10 .container .box2 .rightBox h4 {
  margin: 0;
  font-size: 1.4rem;
  font-weight: bold;
}

.module10 .container .box2 .rightBox ul {
  margin-top: 20px;
}

.module10 .container .box2 .rightBox ul li {
  margin: 10px 0;
  list-style: disc;
  margin-left: 20px;
}

.module10 .container .box2 .rightBox ul li a {
  font-size: 0.95rem;
  transition: all 0.3s;
}

.module10 .container .box2 .rightBox ul li a:hover {
  color: var(--color-Primary);
}

.module11 {
  padding: 50px 0;
  min-height: calc(100vh - 180px);
}

.module11 .container .title {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
}

.module11 .container .box1 {
  margin-top: 50px;
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module11 .container .box1 {
    flex-direction: column;
  }
}

.module11 .container .box1 .listBox {
  width: 100%;
}

.module11 .container .box1 .listBox li {
  width: 100%;
  margin-bottom: 20px;
}

.module11 .container .box1 .listBox li a {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module11 .container .box1 .listBox li a {
    display: grid;
    grid-template-columns: 150px calc(100% - 170px);
  }
}

.module11 .container .box1 .listBox li a:hover img {
  transform: scale(1.1);
}

.module11 .container .box1 .listBox li a .img {
  width: 200px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 10px;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module11 .container .box1 .listBox li a .img {
    width: 100%;
    height: 100%;
  }
}

.module11 .container .box1 .listBox li a .img img {
  width: 100%;
  transition: all 0.5s;
}

@media (min-width: 0px) and (max-width: 700px) {
  .module11 .container .box1 .listBox li a .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.module11 .container .box1 .listBox li a:hover .t1 {
  color: var(--color-Primary);
}

.module11 .container .box1 .listBox li a .right {
  width: 100%;
  overflow: hidden;
}

.module11 .container .box1 .listBox li a .t1 {
  width: 100%;
  font-size: 18px;
  color: #313131;
}

.module11 .container .box1 .listBox li a .t2 {
  font-size: 14px;
  color: #adadad;
}

.module11 .container .box1 .listBox li a .time {
  color: #adadad;
  margin: 0;
}

.module11 .container .box1 .listBox .Pagination5 {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 0;
}

.module11 .container .box1 .listBox .Pagination5 a {
  width: 40px;
  height: 40px;
  border: 1px solid #bebebe;
  text-align: center;
  line-height: 40px;
  margin-right: -1px;
}

.module11 .container .box1 .listBox .Pagination5 a:first-child {
  border-radius: 5px 0 0 5px;
}

.module11 .container .box1 .listBox .Pagination5 a:last-child {
  border-radius: 0 5px 5px 0;
}

.module11 .container .box1 .listBox .Pagination5 .select {
  background-color: var(--color-Primary);
  color: white;
}

.module11 .container .box1 .rightBox {
  background-color: #afafaf;
  width: 100%;
  padding: 20px;
  color: white;
}

.module11 .container .box1 .rightBox h4 {
  margin: 0;
  font-size: 1.4rem;
  font-weight: bold;
}

.module11 .container .box1 .rightBox ul {
  margin-top: 20px;
}

.module11 .container .box1 .rightBox ul li {
  margin: 10px 0;
  list-style: disc;
  margin-left: 20px;
}

.module11 .container .box1 .rightBox ul li a {
  color: white;
  font-size: 0.95rem;
  transition: all 0.3s;
}

.module11 .container .box1 .rightBox ul li a:hover {
  color: var(--color-Primary2);
}

footer {
  background-color: #00084d;
  padding: 30px 10px;
}

footer div {
  color: #9b9b9b;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 0px) and (max-width: 700px) {
  footer div {
    flex-direction: column;
    gap: 10px;
  }
}

footer div span {
  margin: 0 10px;
}

footer div img {
  width: 18px;
}

footer div p {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 5px;
}

.Dialog1 {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 99;
  background-color: rgba(44, 44, 44, 0.363);
  display: none;
}

.Dialog1 .box {
  width: 400px;
  background-color: white;
  border-radius: 10px;
  padding: 10px 20px;
  animation: Dialog1Show 0.4s forwards;
}

.Dialog1 .box .header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.Dialog1 .box .header .icon {
  font-size: 24px;
  transition: all 0.3s;
}

.Dialog1 .box .header .icon:hover {
  color: var(--color-Primary2);
}

.Dialog1 .box .header .title {
  font-weight: bold;
  font-size: 20px;
}

.Dialog1 .box .content {
  min-height: 100px;
  text-align: center;
  font-size: 1.2rem;
  padding: 20px;
}

.Dialog1 .box .content p {
  margin: 0;
}

.Dialog1 .box .content .t2 {
  color: var(--color-Primary);
}

.Dialog1 .box .content img {
  width: 200px;
  margin: 20px 0;
}

.Dialog1 .box .btnList {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.Dialog1 .box .btnList button {
  border: 1px solid #bebebe;
  padding: 4px 20px;
  border-radius: 5px;
  transition: all 0.3s;
}

.Dialog1 .box .btnList .confirm {
  background-color: var(--color-Primary);
  color: white;
}

.Dialog1 .box .btnList .confirm:hover {
  background-color: var(--color-Primary3);
  border: 1px solid var(--color-Primary3);
}

.Dialog1 .box .btnList .cancel:hover {
  border: 1px solid var(--color-Primary2);
  background-color: var(--color-Primary2);
  color: white;
}

@media (min-width: 0px) and (max-width: 700px) {
  .Dialog1 .box {
    width: 90vw;
  }
}

@keyframes Dialog1Show {
  from {
    opacity: 0;
    transform: scale(0);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
