/* common */
html {
  background-color: #f7f7f7;
}
.container {
  width: 100%;
  margin: 0 auto;
  padding: 0;
}
.container::before,
.container::after {
  display: none !important;
}
.ny-container {
  margin-bottom: 80px;
}
.ny-wrap {
  background: url('../img/bg-5.png');
  padding: 22px 0 50px 0;
}
.flex {
  display: flex;
}
.flex-box {
  display: flex;
  align-items: center;
}
.flex-none {
  flex: none;
}
.flex-grow-1 {
  flex: 1;
}
.flex-wrap {
  flex-wrap: wrap;
}
.flex-between {
  justify-content: space-between;
}
.flex-around {
  justify-content: space-around;
}
.flex-start {
  justify-content: flex-start;
}
.flex-center {
  justify-content: center;
}
.flex-col {
  flex-direction: column;
}
.flex-col-reserve {
  flex-direction: column-reverse;
}
.flex-row {
  flex-direction: row;
}
.flex-row-reserve {
  flex-direction: row-reverse;
}
.flex-align-start {
  align-items: flex-start;
}
.flex-align-baseline {
  align-items: baseline;
}
.flex-end {
  justify-content: flex-end;
}
.no-break {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.line-clamp-2 {
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.line-clamp-3 {
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.index-container {
  width: 100%;
  margin: 0 auto;
  padding: 0 10px;
  box-sizing: border-box;
}
@media (min-width: 576px) {
  .index-container {
    padding: 0 20px;
  }
}
@media (min-width: 992px) {
  .index-container {
    padding: 0 30px;
  }
}
@media (min-width: 1024px) {
  .index-container {
    width: 954px;
    padding: 0;
  }
}
@media (min-width: 1100px) {
  .index-container {
    width: 1024px;
  }
}
@media (min-width: 1200px) {
  .index-container {
    width: 1118px;
  }
}
@media (min-width: 1300px) {
  .index-container {
    width: 1212px;
  }
}
@media (min-width: 1400px) {
  .index-container {
    width: 1306px;
  }
}
@media (min-width: 1500px) {
  .index-container {
    width: 1400px;
  }
}

/* header */
.header {
  z-index: 99;
  position: sticky;
  left: 0;
  top: 0;
  width: 100%;
  height: 62px;
  padding: 0 15px;
  box-sizing: border-box;
  background-color: #1e4b8f;
}
.header .logo {
  height: 52px;
}
.header-en .logo {
  height: 54px;
}
.header .logo img {
  width: auto;
  height: 100%;
}
.header .nav {
  position: relative;
  display: none;
  border-radius: 0 0 10px 10px;
}
.header .nav-item a {
  position: relative;
  font-size: 18px;
  color: #2c3c81;
  font-weight: bold;
  line-height: 20px;
  padding: 0 30px;
}
.ny-index .header .nav-item a,
.header-active .nav-item a {
  color: #fff;
}
.header .nav-item>a::before {
  position: absolute;
  left: 0;
  bottom: -6px;
  content: '';
  width: 0;
  height: 3px;
  background-color: #dbab5c;
  transition: width 0.5s ease-in;
}
.header .nav-item>a::after {
  position: absolute;
  left: 50%;
  top: 30px;
  transform: translateX(-50%);
  content: '';
  width: 3px;
  height: 0;
  overflow: hidden;
  background-color: #dbab5c;
  transition: height 0.5s ease-in;
}
.header .nav-item:first-child>a::before,
.header .nav-item:first-child>a::after {
  display: none;
}
.header .nav-item__second {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: absolute;
  top: 76px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(7, 0, 2, 0.6);
  width: 120%;
}
.header .nav-item__second a {
  display: block;
  flex: 1;
  height: 0;
  overflow: hidden;
  transition: height 0.5s linear;
  line-height: 38px;
  padding: 0;
  text-align: center;
  color: #fff;
}
.header-en .nav-item__second a {
  flex: auto;
}
.header .nav-item:hover .nav-item__second {
  padding: 10px 0;
}
.header .nav-item:hover .nav-item__second a {
  height: 38px;
}
.header .nav-item:hover>a::before {
  width: 100%;
}
.header .nav-item>a:hover,
.header .nav-item__second a:hover {
  color: #dbab5c;
}
.header .web-change {
  display: none;
  position: relative;
}
.header .Englist-enter {
  cursor: pointer;
}
.header .Englist-enter-text {
  font-size: 18px;
  color: #2c3c81;
  padding-right: 6px;
  user-select: none;
  font-weight: bold;
}
.ny-index .header .Englist-enter-text,
.header-active .Englist-enter-text {
  color: #fff;
}
.header .Englist-enter .iconfont {
  font-size: 14px;
  color: #2c3c81;
  font-weight: bold;
}
.ny-index .header .Englist-enter .iconfont,
.header-active .Englist-enter .iconfont {
  color: #fff;
}
.header .English-links {
  position: absolute;
  top: 30px;
  display: none;
}
.header .English-links a {
    color: #ee7313;
}
.header .icon-search {
  display: none;
  font-size: 24px;
  color: #666;
  padding-left: 10px;
  cursor: pointer;
}
.header .menu-open {
  display: block;
  font-size: 42px;
  color: #fff;
  cursor: pointer;
}
.header .menu-close {
  display: none;
  font-size: 32px;
  color: #666;
  line-height: 62px;
  text-align: right;
  padding: 0 20px;
  box-sizing: border-box;
  border-bottom: 1px #e5e5e5 solid;
  cursor: pointer;
}
.header .menu-wrap {
  z-index: 999;
  position: fixed;
  top: 0;
  right: -100%;
  width: 70%;
  height: 100vh;
  background-color: #fff;
  transition: right 0.5s ease-out;
}
.header-en .menu-wrap {
  width: 90%;
}
.header .menu-scroll {
  height: calc(100% - 120px);
  padding-bottom: 100px;
  background-color: #fff;
  overflow-y: scroll;
}
.header .menu-item {
  position: relative;
  border-bottom: 1px #e5e5e5 solid;
}
.header .menu-item a {
  display: inline-block;
  font-size: 20px;
  color: #333;
  line-height: 48px;
  padding-left: 20px;
  width: 100%;
}
.header .menu-item__icon-wrap,
.header .web-change .web-change__icon-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 48px;
}
.header .menu-item__icon-wrap .menu-item__icon,
.header .web-change__icon-wrap .web-change__icon {
  position: absolute;
  right: 20px;
  border: solid #afafaf;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 6px;
}
.header .menu-item__icon-wrap .menu-item__icon--up,
.header .web-change__icon-wrap .web-change__icon--up {
  display: none;
  top: 18px;
  transform: rotate(-135deg);
}
.header .menu-item__icon-wrap .menu-item__icon--down,
.header .web-change__icon-wrap .web-change__icon--down {
  top: 14px;
  transform: rotate(45deg);
}
.header .menu-item .menu-item__second>a {
  display: block;
  width: 100%;
  height: 0;
  overflow: hidden;
  transition: height 0.3s linear;
  font-size: 16px;
  color: #666;
  line-height: 38px;
  padding-left: 30px;
}
.header .menu-wrap .web-change {
  position: relative;
  display: block;
  border-bottom: 1px #e5e5e5 solid;
}
.header .web-change-title {
  display: inline-block;
  font-size: 20px;
  color: #333;
  line-height: 48px;
  padding-left: 20px;
  width: 100%;
}
.header .web-change__second a {
  display: block;
  width: 100%;
  height: 0;
  overflow: hidden;
  transition: height 0.3s linear;
  font-size: 16px;
  color: #666;
  line-height: 38px;
  padding-left: 53px;
}
.header .menu-wrap .icon-search {
  display: block;
  padding-left: 20px;
  line-height: 48px;
}

.ny-index .header {
  background-color: #1e4b8f;
  border-bottom: 0;
}
@media (min-width: 576px) {
  .header .menu-open {
    font-size: 50px;
  }
  .header .menu-close {
    font-size: 36px;
  }
}
@media (min-width: 768px) {
  .header {
    height: 72px;
    padding: 0 20px;
  }
  .header .menu-open {
    font-size: 60px;
  }
  .header .menu-close {
    font-size: 42px;
  }
}
@media (min-width: 992px) {
  .header .menu-open {
    font-size: 70px;
  }
  .header .menu-close {
    font-size: 50px;
  }
}
@media (min-width: 1024px) {
  .header {
    height: 80px;
    padding: 0 30px;
    background-color: transparent;
    border-bottom: 1px rgba(255,255,255,0.15) solid;
  }
  .header-en .logo {
    height: 70px;
  }
  .header-top-r, .header .nav {
    display: flex;
  }
  .header .nav-item {
    height: 79px;
  }
  .header .nav-item>a {
    padding: 0 5px;
  }
  .header .nav-item__second {
    top: 80px;
  }
  .header .nav-item a,
  .header .Englist-enter-text {
    font-size: 16px;
  }
  .header .nav-item>a {
    line-height: 18px;
  }
  .header .nav-item>a::after {
    top: 21px;
  }
  .header .nav-item:hover>a::after {
    height: 27px;
  }
  .header .web-change {
    display: block;
  }
  .header .icon-search {
    display: block;
    color: #2c3c81;
    font-weight: bold;
  }
  .ny-index .header .icon-search,
  .header-active .icon-search {
    color: #fff;
  }
  .header .menu-open {
    display: none;
  }

  .header-active {
    background-color: #214889;
  }
}
@media (min-width: 1200px) {
  .header {
    height: 100px;
    padding: 0 50px;
  }
  .header .logo {
    height: 41px;
  }
  .header-en .logo {
    height: 38px;
  }
  .header .nav-item {
    height: 99px;
  }
  .header .nav-item>a {
    padding: 0 10px;
  }
  .header .nav-item__second {
    top: 100px;
  }
  .header .nav-item__second a {
    line-height: 48px;
  }
  .header .nav-item:hover .nav-item__second a {
    height: 48px;
  }
  .header .nav-item a,
  .header .Englist-enter-text {
    font-size: 17px;
  }
  .header .nav-item>a {
    line-height: 20px;
  }
  .header .nav-item>a::after {
    top: 23px;
  }
  .header .nav-item:hover>a::after {
    height: 36px;
  }
}
@media (min-width: 1350px) {
  .header {
    height: 120px;
    padding: 0 80px;
  }
  .header .logo {
    height: 90px;
  }
  .header-en .logo {
    height: 43px;
  }
  .header .nav-item {
    height: 119px;
  }
  .header .nav-item>a {
    padding: 0 10px;
  }
  .header .nav-item__second {
    top: 119px;
  }
  .header .nav-item a,
  .header .Englist-enter-text {
    font-size: 18px;
  }
}
@media (min-width: 1450px) {
  .header-en .logo {
    height: 45px;
  }
  .header .nav-item>a {
    padding: 0 15px;
  }
}
@media (min-width: 1550px) {
  .header-en .logo {
    height: 50px;
  }
  .header .nav-item a,
  .header .Englist-enter-text {
    font-size: 20px;
  }
  .header .nav-item>a {
    line-height: 22px;
  }
  .header .nav-item>a::after {
    top: 25px;
  }
  .header .nav-item:hover>a::after {
    height: 46px;
  }
}
@media (min-width: 1650px) {
  .header-en .logo {
    height: 55px;
  }
  .header .nav-item>a {
    padding: 0 20px;
  }
}
@media (min-width: 1750px) {
  .header-en .logo {
    height: 65px;
  }
}
@media (min-width: 1850px) {
  .header-en .logo {
    height: 70px;
  }
}


/* footer */
.footer {
  background: url('../img/bg-footer.jpg') no-repeat 0 0;
  background-size: 100% 100%;
}
.footer-link {
  padding-bottom: 20px;
  border-bottom: 1px #0b4591 solid;
}
.footer-link-title {
  font-size: 20px;
  color: #fff;
  padding: 20px 0 18px 0;
}
.footer .link-list-item {
  width: 48%;
  height: 40px;
	background-color: #fff;
  cursor: pointer;
  margin-left: 4%;
  margin-bottom: 10px;
}
.footer .link-list-item:nth-child(2n + 1) {
  margin-left: 0;
}
.footer .link-list-item .head {
  height: 100%;
  padding: 0 12px 0 18px;
  box-sizing: border-box;
}
.footer .link-list-item .title {
  font-size: 14px;
  color: #999;
}
.footer .link-list-item .icon-icon_direction_downoutlined {
  font-size: 20px;
  color: #ffc600;
  transition: all 0.5s ease-in;
}
.footer .link-list-item .children {
  z-index: 9;
  position: relative;
  background-color: #fff;
  transition: height 0.5s ease-in;
}
.footer .link-list-item .children a {
  display: block;
  font-size: 14px;
  color: #666;
  text-align: center;
  height: 0;
  overflow: hidden;
  padding: 0 18px;
  box-sizing: border-box;
  line-height: 42px;
  transition: height 0.5s ease-in;
}
.footer .link-list-item:hover .children {
  max-height: 150px;
  padding: 20px 0;
  overflow-y: auto;
}
.footer .link-list-item:hover .icon-icon_direction_downoutlined {
  transform: rotate(180deg);
}
.footer .link-list-item:hover .children a {
  height: 42px;
}
.footer .link-list-item .children a:hover {
  color: #ffc600;
}
.footer-bottom {
  padding: 25px 0;
}
.footer-info {
  padding-bottom: 20px;
}
.footer-info span,
.footer-info span a {
  display: block;
  font-size: 14px;
  color: #d9d9d9;
  line-height: 26px;
}
.footer-ewm-img {
  width: 90px;
	height: 90px;
}
.footer-ewm-img img {
  width: 100%;
	height: 100%;
}
.footer-ewm-text {
  font-size: 16px;
  line-height: 38px;
  color: #d5d5d5;
  text-align: center;
}
.footer-company {
  padding-left: 10px;
}
.footer-company-title {
  font-size: 16px;
  line-height: 30px;
  color: #fff;
  padding: 0 0 6px 0;
}
.footer-company-base span {
  display: block;
  font-size: 14px;
  line-height: 26px;
  color: #d5d5d5;
}
@media (min-width: 768px) {
  .footer-link {
    padding-bottom: 39px;
  }
  .footer-link-title {
    font-size: 20px;
    padding: 30px 0 18px 0;
  }
  .footer .link-list-item {
    flex: 1;
    margin-left: 10px;
  }
  .footer .link-list-item:first-child {
    margin-left: 0;
  }
  .footer .link-list-item:nth-child(2n + 1) {
    margin-left: 10px;
  }
  .footer-info {
    padding-bottom: 0;
  }
  .footer-info span,
  .footer-info span a {
    font-size: 14px;
    line-height: 26px;
  }
  .footer-bottom-r {
    padding-left: 20px;
  }
  .footer-ewm-img {
    width: 90px;
    height: 90px;
  }
  .footer-ewm-text {
    font-size: 14px;
    line-height: 32px;
  }
  .footer-company {
    padding-left: 20px;
  }
  .footer-company-title {
    font-size: 18px;
    line-height: 30px;
    padding: 0 0 10px 0;
  }
  .footer-company-base span {
    font-size: 14px;
    line-height: 26px;
  }
}
@media (min-width: 992px) {
  .footer-ewm-img {
    width: 100px;
    height: 100px;
  }
}
@media (min-width: 1024px) {
  .footer .link-list-item {
    margin-left: 36px;
  }
  .footer .link-list-item:nth-child(2n + 1) {
    margin-left: 36px;
  }
  .footer-ewm-img {
    width: 120px;
    height: 120px;
  }
  .footer-ewm-text {
    font-size: 16px;
  }
}
@media (min-width: 1200px) {
  .footer-link {
    padding-bottom: 60px;
  }
  .footer-link-title {
    padding: 50px 0 38px 0;
  }
  .footer .link-list-item {
    margin-left: 66px;
  }
  .footer .link-list-item:nth-child(2n + 1) {
    margin-left: 66px;
  }
  .footer-bottom {
    padding: 35px 0;
  }
  .footer-info span,
  .footer-info span a {
    font-size: 16px;
    line-height: 36px;
  }
  .footer-ewm-img {
    width: 150px;
    height: 150px;
    margin-top: 8px;
  }
  .footer-ewm-text {
    font-size: 18px;
    line-height: 38px;
  }
  .footer-company {
    padding-left: 30px;
  }
  .footer-company-title {
    font-size: 20px;
    padding: 0 0 16px 0;
  }
  .footer-company-base span {
    font-size: 16px;
    line-height: 30px;
  }
}


/* footer-en */
.footer-en {
  background: url('../img/bg-footer-en.png') no-repeat 0 0;
  background-size: 100% 100%;
}
.footer-en .footer-nav-item_title,
.footer-en .footer-contact-title {
  position: relative;
  font-size: 20px;
  color: #fff;
  line-height: 36px;
  font-weight: bold;
}
.footer-en .footer-nav-item_title::after,
.footer-en .footer-contact-title::after {
  position: absolute;
  left: 0;
  bottom: 0;
  content: '';
  width: 60px;
	height: 3px;
	background-color: #eaa623;
}
.footer-en .footer-nav-item_second,
.footer-en .footer-contact-info {
  padding-top: 10px;
}
.footer-en .footer-nav-item_second a,
.footer-en .footer-contact-info span {
  display: block;
  font-size: 14px;
  color: #fff;
  line-height: 22px;
}
.footer-en .footer-nav-item_second a:hover {
  color: #eaa623;
}
.footer-en .footer-nav {
  width: 60%;
  padding: 30px 0;
}
.footer-en .footer-contact {
  padding: 15px 0;
}
.footer-en .footer-base {
  border-top: 1px #0b4591 solid;
  padding: 12px 0;
}
.footer-en .footer-base span {
  display: block;
  font-size: 12px;
  color: #d9d9d9;
  line-height: 20px;
  text-align: center;
}
@media (min-width: 992px) {
  .footer-en .footer-nav-item_title,
  .footer-en .footer-contact-title {
    font-size: 24px;
    line-height: 56px;
  }
  .footer-en .footer-contact-info span {
    font-size: 16px;
    line-height: 30px;
  }
  .footer-en .footer-contact {
    width: 30%;
    padding: 30px 0;
  }
  .footer-en .footer-base {
    padding: 20px 0 16px 0;
  }
  .footer-en .footer-base span {
    font-size: 16px;
    color: #d9d9d9;
    line-height: 36px;
  }
}


/* common-more */
.common-more-icon {
  width: 22px;
	height: 22px;
	background-color: #d7d7d7;
  border-radius: 50%;
  /*opacity: 0.73;*/
}
.common-more-icon span {
  z-index: 999;
  position: relative;
  display: block;
  width: 10px;
  height: 10px;
  background-color: #ffc600;
  border-radius: 50%;
}
.common-more-icon span::after {
  position: absolute;
  top: 5px;
  left: 10px;
  content: '';
  width: 40px;
	height: 1px;
	background-color: #ffc600;
}
.section-3 .common-more-icon span {
    background-color: #216bab;
}
.section-3 .common-more-icon span::after {
    background-color: #216bab;
}
.common-more-text {
  font-size: 14px;
  color: #fff;
  padding-left: 42px;
}
.common-more:hover .common-more-text {
  color: #fff;
}
.section-3 .common-more-text {
    color: #999;
}
.section-3 .common-more:hover .common-more-text {
  color: #216bab;
}
.common-more:hover .common-more-icon {
	background-color: #d7d7d7;
}
.common-more:hover .common-more-icon span {
	background-color: #216bab;
}
.common-more:hover .common-more-icon span::after {
	background-color: #216bab;
}


/* common-title */
.common-title-en {
  font-size: 14px;
  color: #fefefe;
}
.common-title-cn {
  position: relative;
  font-size: 20px;
  color: #fefefe;
  font-weight: bold;
  line-height: 24px;
  padding-bottom: 10px;
}
.common-title-cn::after {
  position: absolute;
  left: 0;
  bottom: 0;
  content: '';
  width: 48px;
	height: 3px;
	background-color: #216bab;
}
@media (min-width: 768px) {
  .common-title-en {
    font-size: 18px;
  }
  .common-title-cn {
    font-size: 24px;
  }
}

/* common-pos */
.common-pos-wrap {
  border-bottom: 1px #e6e6e6 solid;
}
.common-pos {
  height: 78px;
}
.common-pos .icon-home {
  font-size: 24px;
  color: #d5d5d5;
  padding-right: 10px;
}
.common-pos .cur {
  font-size: 16px;
  color: #383838;
}
.common-pos .cur-list a {
  position: relative;
  padding: 0 5px;
  font-size: 16px;
  color: #383838;
}
.common-pos .cur-list a::after {
  position: absolute;
  content: '>';
  font-size: 16px;
  color: #383838;
}
.common-pos .cur-list a:last-child {
  color: #999;
}
.common-pos .cur-list a:last-child::after {
  content: '';
}


/* common-slide */
.common-slide {
  display: none;
  width: 220px;
  text-align: center;
}
.common-slide-title {
  height: 90px;
  background-color: #1e4b8f;
  font-size: 30px;
  color: #f8f8f8;
  line-height: 90px;
  margin-bottom: 16px;
}
.common-slide-list .common-slide-list__item {
  border-bottom: 1px solid #ededed;
  cursor: pointer;
}
.common-slide-list a {
  display: block;
  font-size: 20px;
  color: #333333;
  line-height: 60px;
}
.common-slide-list__item--active {
  background-color: #e7e7e7;
}
.common-slide-list a:hover {
  background-color: #e7e7e7;
}
@media (min-width: 1024px) {
  .common-slide {
    display: block;
  }
}
@media (min-width: 1200px) {
  .common-slide {
    width: 260px;
  }
}

/* common-news-list */
.common-news-list {
  width: 100%;
  margin-top: 30px;
  padding: 0 10px;
  box-sizing: border-box;
}
.common-news-list .item {
  height: 56px;
  border-bottom: 1px #e6e6e6 solid;
}
.common-news-list .item-title {
  position: relative;
  font-size: 16px;
  color: #333;
  padding: 0 15px;
}
.common-news-list .item-title::before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  content: '';
  width: 0;
  height: 0;
  border-top: 7px transparent solid;
  border-bottom: 7px transparent solid;
  border-left: 7px #d1d1d1 solid;
}
.common-news-list .item-time {
  font-size: 16px;
  color: #888;
}
.common-news-list .item:hover .item-title {
  color: #1e4b8f;
}
.common-news-list .item:hover .item-title::before {
  border-left-color: #1e4b8f;
}
@media (min-width: 576px) {
  .common-news-list {
    padding: 0;
  }
}
@media (min-width: 768px) {
  .common-news-list .item-title {
    font-size: 18px;
    padding: 0 21px;
  }
}
@media (min-width: 992px) {
  .common-news-list .item {
    height: 72px;
  }
}
@media (min-width: 1024px) {
  .common-news-list {
    padding-left: 30px;
  }
}
@media (min-width: 1200px) {
  .common-news-list {
    padding-left: 50px;
  }
}


/* common-pagination */
.common-pagination {
  overflow: hidden;
  font-size: 14px;
  text-align: center;
  margin-top: 28px;
}
.common-pagination__item {
  display: inline-block;
  height: 30px;
  padding: 0 10px;
  background-color: #fff;
  border: 1px #e8e8e8 solid;
  margin-right: 5px;
  color: #515151;
  line-height: 30px;
  cursor: pointer;
}
.common-pagination__item:hover {
  color: #d30b15;
}
.common-pagination__cur {
  color: #fff;
  background-color: #d30b15;
}
.common-pagination__cur:hover {
  color: #fff;
}
.common-pagination__next {
  margin-left: 5px;
}
.common-pagination-list {
  display: inline-block;
}
.pagination-ellipsis-prev,
.pagination-ellipsis-next {
  margin-right: 5px;
}
.common-pagination-form__input {
  width: 53px;
  height: 37px;
  border: 1px #e8e8e8 solid;
  margin: 0 4px;
  box-sizing: border-box;
  text-align: center;
  outline: none;
}
.common-pagination-form__button {
  height: 37px;
  background-color: #fff;
  border: 1px #e8e8e8 solid;
  padding: 0 10px;
  font-size: 14px;
}
@media (min-width: 576px) {
  .common-pagination__item {
    height: 37px;
    padding: 0 20px;
    line-height: 37px;
  }
}
@media (min-width: 992px) {
  .common-pagination__item {
    display: inline-block !important;
  }
}
@media (min-width: 1200px) {
  .common-pagination {
    margin-top: 78px;
  }
  .common-pagination-form,
  .common-pagination__count {
    display: inline-block !important;
  }
}


/* common-desc */
.common-desc {
  padding: 15px 10px;
}
.common-desc,
.common-desc p,
.common-desc p span,
.common-desc span {
  font-size: 16px;
  color: #333;
  line-height: 30px;
  margin-left: 0 !important;
}
.common-desc img {
  max-width: 100% !important;
  height: auto !important;
}
.common-desc table {
  max-width: 100% !important;
  margin: 0 auto !important;
}
@media (min-width: 576px) {
  .common-desc {
    padding: 20px;
  }
}
@media (min-width: 992px) {
  .common-desc {
    padding: 37px 30px;
  }
  .common-desc,
  .common-desc p,
  .common-desc p span,
  .common-desc span {
    font-size: 18px;
    line-height: 36px;
  }
}
