@charset "utf-8";

body {
  padding: 0;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  /* font-family: sans-serif; */
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  color: #333;
  background-color: #fff;
}

/* @media (max-width: 576px) {
	body {
		overflow: hidden;
	}
} */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: #333;
}

a:hover,
a:focus {
  text-decoration: none !important;
  color: #333;
}

a,
input,
button {
  outline: none !important;
}

ul {
  list-style-type: none;
}

.con-width {
  width: 960px;
  margin: 0 auto;
  padding: 0 15px;
  background-image: url(../images/top-bj.png);
  background-repeat: repeat-x;
  background-position: center top;
  background-size: 100%;
}

@media (min-width: 576px) {
  .con-width {
    background-image: none;
  }
}

@media (min-width: 768px) {
  .con-width {
    width: 100%;
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (min-width: 1400px) {
  .con-width {
    width: 1200px;
    padding: 0;
  }
}

.index-content {
  width: 960px;
  margin: 0 auto;
  padding-left: 12px;
  padding-right: 12px;
}

@media (min-width: 768px) {
  .index-content {
    width: 100%;
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (min-width: 1400px) {
  .index-content {
    width: 1200px;
    margin: 0 auto;
    padding-left: 0px;
    padding-right: 0px;
  }
}

/*header*/
.header {
  background-color: #fff;
  background-image: url(../images/top-bj.png);
  background-repeat: repeat-x;
  background-position: center top;
  background-size: 100%;
  position: relative;
  height: 110px;
}

@media (min-width: 992px) {
  .header {
    height: 121px;
  }
}

.top-icon img {
  width: 24px;
  height: 24px;
  transition: all 0.3s ease-in-out;
}

.top-icon img:hover  {
  animation: uderline;
  animation-duration: 0.5s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

@keyframes uderline {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-4px);
  }
}

.header-box {
  height: 80px;
}

.language ul {
  padding: 2px;
  background-color: #fff;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
  border-radius: 30px;
}

.header-text {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  width: 30px;
  border-radius: 40px;
}

.header-text.active,
.header-text:hover{
  background-color: #47afe7;
  color: #fff;
}

.size-box {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.size-box a {
  font-size: 14px;
  color: #333;
  display: inline-block;
  padding: 0 8px;
  transition: all 0.3s ease-in-out;
}

.size-box a:hover {
  color: #47afe7;
}

.logo img {
  height: 60px;
  width: auto;
}

@media (max-width: 991px) {
  .logo img {
    height: 50px;
    width: auto;
  }
}

.nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  position: relative;
  margin-top: 16px;
}

.nav li {
  position: relative;
}

.nav li::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 16px;
  background-color: #ccc;
  right: -24px;
  top: 5px;
}

@media (min-width: 768px) {
  .nav li::after {
    right: -14px;
  }
}

@media (min-width: 1200px) {
  .nav li::after {
    right: -24px;
  }
}

.nav li:last-child::after {
  display: none;
}

.nav li a {
  font-size: 17px;
  color: #333;
  text-align: center;
}

@media (max-width: 1200px) {
.nav li a {
    font-size: 15px;
  }
}

@media (max-width: 991px) {
  .nav li {
    margin-right: 5px;
  }

  .nav li a {
    font-size: 14px;
  }
}

.nav li a:hover,
.nav li a.active {
  color: #47afe7;
}

.banner {
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  height: auto;
  width: 960px;
  padding: 0 12px;
  border-radius: 20px;
}

@media (min-width: 576px) {
  .banner {
    width: 100%;
  }
}

@media (min-width: 1400px) {
  .banner {
    width: 1200px;
    margin: 0 auto;
    padding: 0;
  }
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.home-con-box {
  position: relative;
  width: 960px;
}

@media (min-width: 768px) {
.home-con-box {
    width: 100%;
  }
}

@media (min-width: 1400px) {
  .home-con-box {
    width: 1200px;
  }
}

.home-con-box::after {
  content: "";
  position: absolute;
  top: 0px;
  left: -12px;
  width: 300px;
  height: 280px;
  background-image: url(../images/shape.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  z-index: -1;
}

.home-con-title h2 {
  font-size: 18px;
  font-weight: bold;
  color: #333;
}

@media (min-width: 576px) {
  .home-con-title h2 {
    font-size: 26px;
  }
}

@media (min-width: 992px) {
  .home-con-box::after {
    top: -200px;
    left: 10px;
    width: 700px;
    height: 480px;
  }

  .home-con-title h2 {
    font-size: 36px;
  }

  .home-con-title {
    width: 45%;
  }

  .home-con-text {
    width: 55%;
  }
}

.txt-content {
  padding: 30px 0;
  overflow: hidden;
}

@media (min-width: 992px) {
  .txt-content {
    padding: 60px 0;
  }
}

.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  /* background-color: #0099c7; */
  /* background-color: #4289f1; */
  background-color: #47afe7;
  padding: 14px 0;
}

@media (max-width: 576px) {
  .footer {
    padding: 4px 0;
  }
}

.footer-text {
  color: #fff !important;
  font-size: 14px;
}

.footer-link {
  color: #fff !important;
  font-size: 14px;
  font-weight: bold;
  padding: 0 10px;
}

@media (max-width: 576px) {
  .footer-text {
    padding-top: 3px !important;
  }

  .footer-text,
  .footer-link {
    font-size: 10px;
  }
}

.footer-link:last-child {
  padding-right: 0;
}

.inner-topbox {
  /* background-color: #47afe7; */
  height: 50px;
  margin-top: 20px;
  overflow: hidden;
  width: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  z-index: 1;
}

@media (min-width: 1400px) {
  .inner-topbox {
    margin-top: 30px;
  }
}

.inner-topbox h2 { 
  display: inline;
  font-size: 26px;
  font-weight: bold;
  color: #333;
  position: relative;
}

.inner-topbox h2::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #47afe7;
  z-index: 10;
}

.inner-margin {
  margin-top: 30px;
  margin-bottom: 120px;
}

@media (min-width: 992px) {
  .inner-margin {
    margin-top: 30px;
    /* margin-bottom: 0px; */
  }
}

.list-link {
  padding: 20px 12px;
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 18px;
  color: #333;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
}

.list-link .fa {
  margin-right: 30px;
  transition: all 0.3s ease-in-out;
}

.list-link:hover {
  color: #47afe7;
}

.list-link:hover .fa {
  margin-right: 40px;
  margin-left: 8px;
}

.form-box {
  /* padding: 20px;
	border-radius: 20px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  overflow-x: auto;
}

.form-box table {
  margin: 0;
}

.col1 {
  width: 15%;
}

.col4 {
  width: 10%;
  text-align: center;
}

.col2 {
  width: 20%;
}

.col3 {
  width: 45%;
}

.col5 {
  width: 20%;
}

.col6 {
	width: 60%;
}

.table-light tr th {
  font-size: 18px;
  color: #1d293d;
  border-bottom: none;
  padding: 12px 8px 12px 20px;
  background-color: #edf2f7;
}

.form-icon {
  margin-right: 10px;
  font-weight: 600;
}

.form-icon img {
  width: 30px;
  height: auto;
  transition: all 0.3s ease-in-out;
}

.form-icon img:hover {
  transform: translateY(-5px);
}

.table tbody tr th,
.table tbody tr td {
  padding: 12px 10px 12px 20px;
  /*font-size: 17px;*/
  border-color: #e2e8f0;
}
.index-content {  
    font-size:18px;
    /*font-size:22px;*/
}

.table tbody tr td:hover a {
  color: #47afe7;
}

.table tbody tr td.gray a {
  color: #cecece !important;
}

.col1-1 {
  width: 80%;
}

.new-icon {
  width: 30px;
  height: auto;
  margin-right: 20px;
}

.data-time-title {
  padding-bottom: 15px;
  border-bottom: 1px solid #e5e5e5;
  font-size: 20px;
  font-weight: bold;
  color: #333;
}

.list-tab {
  font-size: 16px;
  color: #666;
  /* font-family: serif; */
}

.list-title {
  /* font-family: serif; */
  font-size: 24px;
  font-weight: bold;
  color: #333;
  margin: 20px 0 30px;
  height: 110px;
}

@media (max-width: 991px) {
  .list-title {
    font-size: 18px;
    height: 50px;
  }
}

@media (max-width: 767px) {
  .list-title {
    height: auto;
    margin: 10px 0 15px;
  }
}

.list-box {
  height: auto;
  padding-bottom: 30px;
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 30px;
}

.new-info-icon img {
  width: 40px;
  transition: all 0.3s ease-in-out;
}

.new-info-icon:hover img {
  transform: translateY(-5px);
}

.flip-select {
  width: 130px;
  /* font-family: serif; */
}

.hp-list-box {
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  padding: 20px 15px;
  transition: all 0.3s ease-in-out;
}

.hp-list-box:hover {
  background-color: rgba(61, 81, 228, 0.02);
  border-color: rgba(61, 81, 228, 0.35);
  transform: translateY(-5px);
}

.hp-list-item {
  padding-bottom: 15px;
  border-bottom: 1px solid #f4f4f4;
  margin-bottom: 15px;
}

.hp-list-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.hp-info-title {
  font-size: 16px;
  color: #787878;
  display: flex;
  margin-bottom: 10px;
}

.hp-info-title span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #e9ecef;
  border-radius: 50%;
  margin-right: 15px;
}

.hp-info-title svg {
  width: 20px;
  height: 20px;
  fill: #000;
}

.hp-info-name {
  width: calc(100% - 55px);
}

.hp-info-name b,
.hp-info-name i {
  display: block;
}

.hp-info-name b {
  font-size: 18px;
  color: #333;
}

.hp-info-name i {
  font-size: 14px;
  color: #787878;
  font-style: normal;
}

.data_nav {
  padding: 10px 0;
  /* border-bottom: 2px solid #e5e5e5; */
}

.data_nav a {
  display: inline-block;
  font-size: 18px;
  color: #333;
  margin-right: 50px;
  transition: all 0.3s ease-in-out;
  position: relative;
  white-space: nowrap;
}

@media (max-width: 991px) {
  .data_nav a {
    font-size: 16px;
    margin-right: 15px;
  }
}

.data_nav a:last-child {
  margin-right: 0;
}

.data_nav a::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #47afe7;
  opacity: 0;
}

.data_nav a.active {
  color: #47afe7;
}

.data_nav a.active::after {
  opacity: 1;
}

.data-select-box {
  margin-right: 20px;
  display: flex;
  flex-direction: column;
}

.data-select {
  width: 140px;
}

.data-select-box .form-label {
  font-size: 14px;
  color: #666;
}

.data_content_box {
  padding: 20px 20px 12px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  overflow-x: auto;
  /* margin-bottom: 30px; */
  /* min-height: 100px; */
  background-color: #fff;
  /* border: 1px solid #e5e5e5; */
}

.submit {
  border-radius: 10px;
  border: none;
  font-size: 14px;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  background-color: #3d51e4;
  padding: 10px 20px;
  transition: all 0.3s ease-in-out;
}

.submit:hover {
  background-color: #2b3ed1;
}

.note-style {
  font-size: 15px;
}

.note-style strong {
  font-size: 18px;
}

.gray-box {
  opacity: 0.4;
}

.max1440 {
  margin-bottom: 80px;
}

@media (min-width: 1600px) {
  .max1440 {
    margin-bottom: 0;
  }
}

@media (max-width: 991px) {
  .home-con-title {
	  width: 40%;
  }

  .home-con-text {
    width: 60%;
	  padding-right: 40px;
  }

  .max1440 {
    overflow: hidden;
  }
}

.container-footer {
  max-width: 100%;
  padding: 0 12px;
}

@media (min-width: 1400px) {
  .container-footer {
    max-width: 1200px;
    padding: 0;
  }
}





.index-content div,  
.index-content p,
.index-content span,
.index-content h1,
.index-content h3,
.index-content h4,
.index-content h5,
.index-content h6,
.index-content li,
.index-content a,
.index-content td,
.index-content th {
    font-size: inherit !important;
}

/* pagination start */
.pagination-wrapper {
    margin: 25px 0;
}

.pagination {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 6px;
    flex-wrap: wrap;
    align-items: center;
}

.pagination li {
    margin: 0;
}

.pagination a,
.pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 12px;
    border: 2px solid #ddd;
    border-radius: 6px;
    text-decoration: none;
    color: #555;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #fff;
    position: relative;
}

.pagination a:hover {
    background: #f8f9fa;
    border-color: #47afe7;
    color: #47afe7;
    transform: translateY(-1px);
}

.pagination a.current {
    background: #47afe7;
    border-color: #47afe7;
    color: #fff;
    font-weight: 600;
}

.pagination .fa-angle-right:before {
    content: ">";
    font-family: Arial, sans-serif;
    font-size: 18px;
    font-weight: bold;
}

.pagination .fa-angle-left:before {
    content: "<";
    font-family: Arial, sans-serif;
    font-size: 18px;
    font-weight: bold;
}

.text-right {
    color: #666;
    font-size: 14px;
    font-weight: 500;
}

.row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

@media (max-width: 768px) {
    .pagination a,
    .pagination span {
        min-width: 38px;
        height: 38px;
        font-size: 13px;
    }
    
    .row {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}
/* pagination end */


.btn-primary-2:hover {
    color: #47AFE7 !important;
}
