@charset "utf-8";
/* CSS Document */

* {
  box-sizing: border-box;
}

body,
button,
input,
select,
textarea,
address {
  font:
    12px/1.5 tahoma,
    MicrosoftYaHei,
    微软雅黑,
    Arial,
    sans-serif;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  color: #666;
  background: #fff;
}
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
button,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  color: #666;
}
.ptable tr td {
  border: 1px solid #aaa;
  text-align: left;
  border-bottom: none;
  border-right: none;
}
img {
  border: none;
}
em,
strong {
  font-style: normal;
  font-weight: normal;
}
li {
  list-style: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}
input,
button,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

p {
  line-height: 20px;
  margin: 0px;
  padding: 0px;
  border: 0px;
}
/* a defined */
a {
  color: #666;
  text-decoration: none;
}
a:hover {
  color: #bb0100;
  text-decoration: underline;
}

.black,
.black a {
  color: #000;
  text-decoration: none;
}
.black a:hover,
.text1 a:hover {
  color: #000;
  text-decoration: underline;
}

.gray666,
.gray666 a {
  color: #666;
  text-decoration: none;
}
.gray666 a:hover {
  color: #aaa;
  text-decoration: underline;
}

.gray333 {
  color: #333;
}
.gray333 a {
  color: #333;
  text-decoration: none;
}
.gray333 a:hover {
  color: #bb0100;
  text-decoration: underline;
}

.gray999,
.gray999 a {
  color: #999;
  text-decoration: none;
}
.gray999 a:hover {
  color: #aaa;
  text-decoration: underline;
}

.red {
  color: #bb0100;
}

.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.clearfix {
  display: inline-block;
}
/* Hides from IE-mac \*/
* html .clearfix {
  height: 1%;
}
.clearfix {
  display: block;
} /* End hide from IE-mac */

/* 头部样式 */
.top {
  width: 1004px;
  max-width: 100%;
  min-height: 200px;
  margin: 0px auto;
  position: relative;
  overflow: hidden;
}
.top video {
  display: block;
}
.top_t {
  width: 100%;
  padding: 0 12px;
  top: 15px;
  position: absolute;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}
.top_t .logo-title {
  display: flex;
  align-items: baseline;
}
.top_t .logo-title:hover {
  text-decoration: none;
}
.top_t .logo-title h1 {
  font-size: 26px;
  color: #131313;
  font-weight: bolder;
  margin-right: 6px;
}
.top_t .logo-title h2 {
  font-size: 14px;
  color: #131313;
}
.top_t_r {
  display: flex;
  align-items: center;
}
.top_t_r .separator {
  padding: 0 4px;
}
.phone-nav-btn {
  height: 20px;
  margin-left: 8px;
  cursor: pointer;
  display: none;
}
.nav {
  width: 100%;
  left: 0;
  top: 48px;
  position: absolute;
  background: url(../images/menu_bg.gif) no-repeat center;
  background-size: 985px 100%;
  z-index: 10;
}
.nav ul {
  display: flex;
  justify-content: space-between;
  padding: 31px 49px 28px;
  font-weight: bold;
}
.nav li {
  flex: 0 0 92px;
  text-align: center;
}
.nav li a {
  color: #fff;
  display: block;
  line-height: 26px;
}
.nav li a:hover,
.nav li .hover {
  color: #fff;
  background: url(../images/menu_over.jpg) no-repeat center;
  text-decoration: none;
}

.nav .logo-img {
  flex: 0 0 80px;
}

.sidebar-mobile {
  z-index: 100;
  -webkit-overflow-scrolling: touch;
  width: 300px;
  height: 100vh;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  position: fixed;
  top: 0;
  right: 0;
  overflow: hidden auto;
  transform: translate(calc(5px + 100%));
  padding-left: 15px;
}

.sidebar-mobile--visible {
  transform: translate(0, 0);
}

.sidebar-mobile__content {
  background: #fff;
  height: 100vh;
  padding: 4px 0;
  position: relative;
  overflow-x: hidden;
  box-shadow: -5px 0 10px #0003;
}

.sidebar-mobile__close {
  cursor: pointer;
  color: #fff;
  -webkit-tap-highlight-color: #0000;
  background-color: #cccccc;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 26px;
  height: 26px;
  font-size: 1em;
  transition: background-color 0.15s;
  display: flex;
  position: absolute;
  top: 10px;
  right: 22px;
}

.sidebar-mobile__close:hover {
  background-color: #09263e;
}

.sidebar-mobile__section {
  border-left: 2px solid #0000;
}

.sidebar-mobile__section--active {
  border-left: 2px solid #8dd6f9;
}

.sidebar-mobile__section--active .sidebar-mobile__section-header {
  color: #658797;
}

.sidebar-mobile__section-header {
  text-transform: uppercase;
  color: #2b3a42;
  padding: 8px 16px;
  font-weight: 600;
  display: block;
}

.sidebar-mobile__section-header h3 {
  font-size: 16px;
  color: inherit;
}
.sidebar-mobile__section-header h4 {
  font-size: 14px;
  color: inherit;
}
.sidebar-mobile__section-header h5 {
  font-size: 12px;
  color: inherit;
}

.sidebar-mobile__section-header:hover h3,
.sidebar-mobile__section-header:hover h4,
.sidebar-mobile__section-header:hover h5 {
  color: #ff1111;
}

.sidebar-mobile__section-child a:hover h5 {
  color: #ff1111;
}

.sidebar-mobile__section ul {
  padding: 0 0 8px 16px;
}

.sidebar-mobile__content div:not(:first-of-type) .sidebar-mobile__section-header {
  border-top: 1px solid #dedede;
}

.sidebar-mobile__section-child {
  margin-left: 10px;
}

.sidebar-mobile__page {
  text-transform: capitalize;
  -webkit-tap-highlight-color: #0000;
  display: block;
}

.sidebar-mobile__page:hover {
  color: inherit;
}

.sidebar-mobile__section a:hover {
  text-decoration: none;
  color: #ff1111 !important;
}

@media screen and (max-width: 1004px) {
  .phone-nav-btn {
    display: block;
  }
  .nav {
    display: none;
  }
}

.home-inner {
  width: 100%;
  background-size: cover;
  background-position: center 0;
  background-repeat: no-repeat;
  position: relative;
}

.home-inner .content {
  position: absolute;
  top: 54.5%;
  left: 61%;
  max-width: 39%;
}

.home-inner h2 {
  font-size: 20px;
  color: #252525;
  font-weight: bold;
  display: flex;
  align-items: baseline;
  line-height: 1;
  margin-bottom: 5px;
  gap: 5px;
}

.home-inner h2 img {
  width: 12px;
}

.home-inner .text {
  font-weight: bold;
  transform: translateX(110%);
  transition: transform 6s linear;
  animation-delay: 0.2s;
}
.home-inner .swiper-wrapper {
  transition-timing-function: linear;
}
.home-inner .text.show {
  transform: translateX(0);
}
.home-inner .swiper-slide {
  color: #1e3f31;
  font-size: 14px;
}
@media screen and (max-width: 769px) {
  .home-inner .content {
    top: 52.5%;
    left: 58%;
    max-width: 42%;
  }
}
@media screen and (max-width: 576px) {
  .home-inner .content {
    top: 40%;
    left: 45%;
    max-width: 55%;
  }
  .home-inner .swiper-slide {
    font-size: 12px;
  }
}

/* 首页内容样式 */
.main {
  width: 1004px;
  max-width: 100%;
  margin: 0px auto;
}
.home-title {
  border-bottom: 1px solid #ccc;
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.home-title .title-left {
  font-size: 14px;
  color: #b32418;
  font-weight: bold;
  display: flex;
  align-items: center;
}
.home-title .title-left:hover {
  text-decoration: none;
}
.home-title .title-right {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #1c1c1c;
  font-weight: bold;
}
.home-content {
  display: flex;
  padding: 30px 0 8px;
}
.home-content-text {
  flex: 0 0 350px;
  padding: 0 12px;
}
.home-content-text p {
  line-height: 1.5;
}
.real-estate-list {
  flex: 0 0 654px;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 1004px) {
  .home-content {
    display: block;
  }
  .home-content-text {
    margin-bottom: 18px;
  }
}
.real-estate-list .list-item {
  flex: 0 0 25%;
  padding: 0 8px;
}
@media screen and (max-width: 576px) {
  .real-estate-list .list-item {
    flex: 0 0 50%;
  }
}
.real-estate-list .list-item a {
  display: block;
}
.real-estate-list .list-item p {
  margin-top: 15px;
}
.title1 {
  border-bottom: 1px solid #ccc;
  height: 29px;
  padding-left: 12px;
  position: relative;
}
.title1 span {
  position: absolute;
  top: 0px;
  right: 12px;
}

.home_center {
  padding: 20px 9px 0px 9px;
}
.home_center dl {
  width: 177px;
  float: left;
  padding-bottom: 12px;
}
.home_center dd {
  width: 177px;
  height: 66px;
  display: block;
}
.home_center dt {
  width: 100%;
  line-height: 20px;
  margin-top: 6px;
  min-height: 128px;
  _height: 128px;
  position: relative;
}
.home_center dt span {
  display: block;
  position: absolute;
  bottom: 0px;
  left: 0px;
}
.home_space {
  padding-right: 12px;
  border-right: 1px dashed #ccc;
  margin-right: 12px;
}

/* 底部样式 */
.foot {
  margin: 0px auto;
  background: url(../images/foot_bg.jpg) no-repeat center;
  background-size: cover;
  padding: 22px 12px 13px;
  color: #999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
}

.foot-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.foot-right a {
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

/* 内页样式 */
.center {
  width: 1004px;
  max-width: 100%;
  margin: 0px auto 20px auto;
  display: flex;
  padding: 0 12px;
}
.left {
  flex: 0 0 173px;
  background: url(../images/left_pic1.jpg) top no-repeat;
}
.menu {
  background: url(../images/left_pic2.jpg) repeat-y;
  margin-top: 10px;
  padding-left: 9px;
}
.left_b {
  background: url(../images/left_pic3.jpg) no-repeat;
  width: 100%;
  height: 364px;
  float: left;
}

.menu ul {
  margin: 0px;
}
.menu li {
  padding-bottom: 3px;
  background: url(../images/30.jpg) bottom left no-repeat;
  color: #333;
  padding-top: 2px;
}
.menu li h3 {
  height: 27px;
  line-height: 27px;
}
.menu li a {
  display: block;
  color: #333;
  padding-left: 10px;
}
.menu li a:hover,
.menu li .hover2 {
  background: url(../images/left_hover.jpg) no-repeat;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  height: 27px;
  line-height: 27px;
}

.menu li span a {
  color: #333;
  text-decoration: none; /*width:125px;*/
  line-height: 24px;
  height: 24px; /*padding-left:22px;*/
  padding-left: 15px;
}
.menu li span a:hover,
.menu li span .hover1 {
  background: url(../images/03.jpg) 10px center no-repeat;
  color: #333;
  text-decoration: none; /*width:125px;*/
  line-height: 24px;
  height: 24px; /*padding-left:22px;*/
  padding-left: 15px;
}

.menu li div {
  color: #666666;
  display: block;
  font-size: 12px;
  padding-bottom: 6px;
  overflow: hidden;
}
.menu li div span {
  display: block;
  color: #666666;
  line-height: 24px;
  height: 24px;
}
.menu li div a {
  color: #666666;
  line-height: 24px;
  height: 24px;
  display: block; /*padding-left:40px;*/
  background: none;
}
.menu li div a:hover,
.menu li div .hover1 {
  color: #c30b0b;
  height: 24px;
  line-height: 24px;
  background: url(../images/menu3.gif) no-repeat;
  display: block; /*padding-left:40px;*/
  font-weight: bold;
}

/* 内页右边样式 */
.right {
  max-width: 100%;
  flex: 1;
  background: url(../images/right_pic1.jpg) top no-repeat;
  background-size: 100%;
}
.right_center {
  background: url(../images/right_pic2.jpg) right top no-repeat;
  margin-top: 10px;
  padding: 0px 25px 0px 25px;
}
.right_title {
  background: url(../images/right_titlebg.jpg) left no-repeat;
  margin-top: 10px;
  border-bottom: 1px solid #ccc;
  color: #333;
  position: relative;
  font-size: 14px;
  font-weight: bold;
  height: 29px;
  padding-top: 3px;
  padding-left: 15px;
  padding-bottom: 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.right_title .right_title_nav {
  color: #666;
  font-size: 12px;
  font-weight: normal;
}

@media screen and (max-width: 1004px) {
  .left {
    display: none;
  }
  .right {
    background: none;
    border: 1px solid #dddddd;
    border-radius: 4px;
  }
  .right_center {
    padding: 0 10px;
    background: none;
  }
}

@media screen and (max-width: 576px) {
  .right_title .right_title_nav,
  .right_title > span {
    display: none;
  }
}

.products {
  line-height: 20px;
  padding-top: 20px;
  clear: both;
  padding-bottom: 30px;
}
.products2 {
  padding-top: 20px;
  padding-bottom: 20px;
  float: left;
}
.products_contact {
  padding-top: 30px;
  line-height: 22px;
}
.join_bg {
  background: url(../images/bg03.jpg) repeat-x;
  height: 33px;
}

.input {
  border: 1px solid #ccc;
}

.button {
  background: #d4d0c8;
  color: #333;
  border: 0px;
  padding: 2px 8px;
  margin-left: 200px;
}

.contact {
  padding-left: 23px;
}

.about {
  background: url(../images/about_pic.jpg) right bottom no-repeat;
  overflow: hidden;
  padding-bottom: 100px;
  padding-top: 10px;
  line-height: 22px;
}

.about2 {
  overflow: hidden;
  padding-bottom: 100px;
  padding-top: 20px;
  line-height: 22px;
}

/* 让前后台一致的样式 */
.kd-content:after {
  clear: both;
  content: " ";
  display: block;
  height: 0;
  color: #666;
}
.kd-content h1,
.kd-content h2,
.kd-content h3,
.kd-content h4,
.kd-content h5,
.kd-content h6,
.kd-content hr,
.kd-content p,
.kd-content blockquote,
.kd-content dl,
.kd-content dt,
.kd-content dd,
.kd-content ul,
.kd-content ol,
.kd-content li,
.kd-content pre,
.kd-content form,
.kd-content fieldset,
.kd-content legend,
.kd-content button,
.kd-content input,
.kd-content textarea,
.kd-content th,
.kd-content td {
  margin: 0;
  padding: 0;
}
.kd-content,
.kd-content button,
.kd-content input,
.kd-content select,
.kd-content textarea {
  font:
    12px/1.5 tahoma,
    MicrosoftYaHei,
    微软雅黑,
    Arial,
    sans-serif;
  line-height: 20px;
}
.kd-content strong {
  font-weight: bold;
}
.kd-content h1 {
  font-size: 2em;
  font-weight: bold;
  margin: 0.67em 0;
}
.kd-content h2 {
  font-size: 1.5em;
  font-weight: bold;
  margin: 0.83em 0;
}
.kd-content h3 {
  font-size: 1.17em;
  font-weight: bold;
  margin: 1em 0;
}
.kd-content h4 {
  font-weight: bold;
  margin: 1.33em 0;
}
.kd-content h5 {
  font-size: 0.83em;
  font-weight: bold;
  margin: 1.67em 0;
}
.kd-content h6 {
  font-size: 0.67em;
  font-weight: bold;
  margin: 2.33em 0;
}
.kd-content blockquote {
  display: block;
  margin: 1em 40px;
}
.kd-content address {
  display: block;
  font-style: italic;
}
.kd-content i,
.kd-content cite,
.kd-content em,
.kd-content var,
.kd-content dfn {
  font-style: italic;
}
.kd-content u,
.kd-content ins {
  text-decoration: underline;
}
.kd-content s,
.kd-content strike,
.kd-content del {
  text-decoration: line-through;
}
.kd-content hr {
  border: 1px inset;
  color: gray;
  display: block;
  height: 2px;
  margin: 0.5em auto;
}
.kd-content code,
.kd-content kbd,
.kd-content pre,
.kd-content samp {
  font-family:
    courier new,
    courier,
    monospace;
}
.kd-content small {
  font-size: 12px;
}
.kd-content sup {
  vertical-align: text-top;
}
.kd-content sub {
  vertical-align: text-bottom;
}
.kd-content legend {
  color: #555;
}
.kd-content fieldset,
.kd-content img {
  border: 0 none;
}
.kd-content table {
  display: table;
}
.kd-content blockquote,
.kd-content ul,
.kd-content ol,
.kd-content dl {
  margin: 1em;
}
.kd-content ul,
.kd-content ol,
.kd-content dl {
  margin-left: 2em;
}
.kd-content ol li {
  list-style: decimal outside none;
}
.kd-content ul li {
  list-style: disc outside none;
}
.kd-content ul li {
  list-style: disc outside none;
}
.kd-content ul li ul li {
  list-style: circle outside none;
}
.kd-content ul li ul li ul li {
  list-style: square outside none;
}
/*.kd-content dl dd {
    margin-left: 1em;
}*/
.kd-content th {
  font-weight: bold;
  text-align: center;
}
.kd-content caption {
  margin-bottom: 0.5em;
  white-space: nowrap;
}
.kd-content ul,
.kd-content ol {
  margin-left: 0;
  padding-left: 40px;
}
.kd-content p {
  margin: 1 0;
}
.kd-content td img,
.kd-content p img {
  vertical-align: top;
  max-width: 100%;
  height: auto;
}
.kd-content img:-moz-broken {
  text-align: center;
  -moz-force-broken-image-icon: 1;
  height: 24px;
  width: 24px;
}

.kd-content table {
  border: 1px solid #333333 !important;
  border-collapse: collapse;
  margin: 0 !important;
  width: 100% !important;
}

.table-c table {
  border-right: 1px solid #333333;
  border-bottom: 1px solid #333333;
}
.table-c table td {
  border-left: 1px solid #333333;
  border-top: 1px solid #333333;
}

.team-members {
  display: flex;
  flex-wrap: wrap;
}

.team-members dl {
  flex: 0 0 25%;
  margin: 0px;
  padding: 10px;
  height: 330px;
}
.team-members dd {
  border: 1px solid #bbb;
  margin: 0px;
}
.team-members dd img {
  width: 100%;
  display: block;
  border: 0px;
}
.team-members dt {
  text-align: center;
  width: 100%;
  line-height: 24px;
  padding-top: 5px;
}

.products .input {
  max-width: 100%;
}

.products2 dl {
  width: 142px;
  height: 258px;
}
.products2 dd {
  border: 0px solid #bbb;
  margin: 0px;
  padding: 1px;
}
.products2 dd img {
  display: block;
  border: 0px;
}
.products2 dt {
  text-align: center;
  width: 100%;
  line-height: 24px;
  padding-top: 5px;
}

.products_img {
  width: 252px;
  float: left;
  margin-left: 15px;
  height: 252px;
  border: 1px solid #bbb;
  padding: 1px;
  margin-bottom: 20px;
}
.products_img2 {
  width: 250px;
  float: left;
  margin-left: 10px;
  height: 370px;
  border: 0px solid #bbb;
  padding: 1px;
  margin-bottom: 20px;
}
.products_title {
  background: url(../images/title5.gif) repeat-x;
  border: 1px solid #bbb;
  height: 25px;
  padding-left: 20px;
  line-height: 25px;
  color: #900;
}
.products_title2 {
  border: 0px solid #bbb;
  color: #900;
  float: left;
  width: 450px;
}
.products_title3 {
  border: 0px solid #bbb;
  color: #900;
  float: left;
  width: 400px;
  margin-left: 15px;
}
.pl_0 {
  float: left;
  width: 85px;
  text-align: right;
  font-weight: bold;
  color: #990000;
}
.pl_1 {
  float: left;
  width: 440px;
  text-align: left;
  padding-left: 20px;
}
.products_text {
  color: #666;
  width: 440px;
  float: left;
  text-align: left;
  padding-left: 20px;
  line-height: 22px;
}
.products_text2 {
  color: #666;
  width: 380px;
  float: left;
}

.mail {
  width: 1000px;
  min-height: 625px;
  _height: 625px;
  margin: 0px auto;
  background: url(../images/mail_back.jpg) no-repeat;
  position: relative;
}
.mail_flash {
  position: absolute;
  top: 240px;
  left: 95px;
}
.mail_box {
  border-right: none;
  padding: 32px 50px 2px 32px;
  overflow: hidden;
  width: 401px;
  position: absolute;
  z-index: 100;
  top: 120px;
  left: 517px;
  min-height: 260px;
  _height: 260px;
}
.mail_input {
  border: 1px solid #cdcdcd;
  height: 19px;
}
.mail_flash2 {
  position: absolute;
  top: 260px;
  left: 0px;
  z-index: 10;
}

.video {
  padding: 29px 0px 30px 32px;
  width: 606px;
}
.video_center {
  height: 58px;
  line-height: 50px;
  font-size: 14px;
  color: #505050;
}

.communication-chapter {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.communication-chapter img {
  display: block;
}

.communication-chapter > div {
  flex: 0 0 25%;
  text-align: center;
  padding: 10px 20px;
}

@media screen and (max-width: 576px) {
  .communication-chapter > div {
    flex: 0 0 50%;
  }
}

.communication-chapter a {
  display: block;
  position: relative;
}

.communication-chapter .play-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 66;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.3);
}

.communication-chapter .play-wrapper img {
  width: 50px;
  height: 50px;
}

.download-wrapper {
  max-width: 680px;
  margin: 0 auto;
  padding: 20px 10px;
}

.download-list {
  margin-bottom: 36px;
}
.download-list-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  border-bottom: 1px dotted #ccc;
  background-image: url(../images/right_titlebg.jpg);
  background-repeat: no-repeat;
  background-position: 4px center;
}

.download-list-item .download-btn {
  white-space: nowrap;
  color: #ff1111;
  display: flex;
  align-items: center;
  gap: 4px;
}

.download-current-btn {
  text-align: right;
}

.download-current-btn a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #ff1111;
  justify-content: flex-end;
  cursor: pointer;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.pagination .page-item {
  margin-bottom: 5px;
}

.pagination .page-item a,
.pagination .page-item span {
  display: block;
  width: 28px;
  text-align: center;
  padding: 5px;
  white-space: nowrap;
  transition: background-color 0.3s;
}

.pagination .prev-page,
.pagination .next-page {
  margin: 0 10px;
}

.pagination .prev-page a,
.pagination .next-page a,
.pagination .prev-page span,
.pagination .next-page span {
  width: auto;
  padding: 5px 15px;
  background-color: #000000;
  color: #ffffff;
}

.pagination .prev-page:hover a,
.pagination .next-page:hover a,
.pagination .prev-page:hover span,
.pagination .next-page:hover span {
  background-color: #333333;
}

.pagination .page-item.disabled a .pagination .page-item.disabled span {
  cursor: not-allowed;
  opacity: 0.5;
}

.pagination .page-item.active a,
.pagination .page-item:hover a,
.pagination .page-item.active span,
.pagination .page-item:hover span {
  background-color: #ececec !important;
}

.character-chapter {
  max-width: 510px;
  margin: 0 auto;
  padding: 30px 56px;
  position: relative;
}

.character-chapter .swiper-button-next,
.character-chapter .swiper-button-prev {
  width: 30px;
  height: 30px;
  border: 2px solid #333;
  border-radius: 100%;
  overflow: hidden;
  transition: all 0.3s;
}

.character-chapter .swiper-button-next::after,
.character-chapter .swiper-button-prev::after {
  font-size: 16px;
  color: #333;
  font-weight: bold;
  transition: all 0.3s;
}

.character-chapter .swiper-button-prev {
  left: 0;
}
.character-chapter .swiper-button-next {
  right: 0;
  left: auto;
}

.character-chapter .swiper-button-next:hover,
.character-chapter .swiper-button-prev:hover {
  border-color: #ff1111;
}

.character-chapter .swiper-button-next:hover::after,
.character-chapter .swiper-button-prev:hover::after {
  color: #ff1111;
}

.character-chapter .introl {
  text-align: center;
  margin-top: 15px;
}

@media screen and (max-width: 520px) {
  .character-chapter {
    max-width: 100%;
  }

  .team-members dl {
    flex: 0 0 50%;
  }
}

/* 表格整体边框 */
table {
  width: 100%;
  border-collapse: collapse; /* 合并边框，避免双线 */
}

/* 单元格边框（行分割线） */
table th,
table td {
  border: 1px solid #ddd; /* 给每个单元格加边框，形成完整网格 */
  padding: 8px 12px;
  text-align: left;
}

/* 或者只需要行分割线（下边框） */
table tbody tr {
  border-bottom: 1px solid #ddd;
}

/* 鼠标悬停效果（可选） */
table tbody tr:hover {
  background-color: #f5f5f5;
}

.pagetop-auto {
  position: fixed;
  width: 40px;
  height: 40px;
  bottom: 20px;
  right: 10px;
  z-index: 9999;
  cursor: pointer;
  border-radius: 100%;
  overflow: hidden;
}
.pagetop-auto img {
  width: 100%;
  height: 100%;
  display: block;
}

.page-main {
  margin-bottom: 55px;
}

@media screen and (max-width: 576px) {
  .foot {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  .home-inner {
    margin-top: 40px;
  }
  .top_t {
    top: 10px;
  }

  .top {
    min-height: auto;
  }
  .page-main {
    margin-bottom: 85px;
  }
}
