/* 基础样式 - 与index.css保持一致 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100%;
  font-size: 14px;
  line-height: 1.6;
  color: #333;
  background-color: #f5f5f5;
}

a,
aside,
article,
body,
blockquote,
code,
cite,
div,
dl,
dt,
dd,
del,
em,
footer,
figcaption,
figure,
form,
fieldset,
header,
h1,
h2,
h3,
h4,
h5,
h6,
input,
img,
li,
legend,
mark,
nav,
ol,
p,
pre,
section,
span,
strong,
th,
td,
time,
textarea,
ul,
var {
  margin: 0;
  padding: 0; }

article,
aside,
div,
header,
section,
footer,
nav,
figure,
li {
  display: block; }

th {
  font-weight: normal; }

input,
textarea,
button,
select,
label,
[contenteditable] {
  outline: none;
  border: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font: inherit;
  padding: 0;
  background: transparent;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: text; }

input,
textarea {
  width: 100%; }
  input::-webkit-input-placeholder,
  textarea::-webkit-input-placeholder {
    color: #888; }

select, textarea {
  width: 100%; }

textarea {
  resize: none; }

h1, h2, h3, h4, h5, h6 {
  font-weight: normal; }

a {
  text-decoration: none;
  color: #333;
  transition: color 0.3s;
}

a:hover {
  color: #409EFF;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  vertical-align: middle; }

[contenteditable]:empty::before {
  content: attr(placeholder);
  color: #ccc; }
[contenteditable]:focus::before:empty::before {
  content: attr(placeholder); }
[contenteditable]:focus::before:not(:empty)::before {
  content: initial; }

video {
  width: 100%; }

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  appearance: none; }

input[type=text],
input[type=password],
input[type=tel],
input[type=number] {
  width: 100%; }

input[type=radio] + label {
  cursor: pointer;
  position: relative;
  padding-left: 1.5em;
  font-size: 1em;
  color: inherit; }
  input[type=radio] + label::before {
    content: "";
    position: absolute;
    width: 1em;
    height: 1em;
    left: 1px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
    background-color: #fff;
    box-shadow: 0 0 0 1px #bbb;
    -webkit-transition: all 0.5s ease-in-out 0s;
    -ms-transition: all 0.5s ease-in-out 0s;
    -moz-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s; }
input[type=radio] + label::before {
  border-radius: 50%;
  border: .25em solid #fff; }
input[type=radio]:checked + label::before {
  background-color: #00a0e9;
  box-shadow: 0 0 0 1px #00a0e9; }

.model-fixd {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.3); }

.show {
  display: block; }

.hide {
  display: none !important; }

.color-success {
  background-color: #67C23A; }

.color-warning {
  background-color: #E6A23C; }

.color-danger {
  background-color: #F56C6C; }

.hover {
  opacity: .8; }

.clear::after {
  content: '';
  display: block;
  clear: both; }

.flex-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: flex-start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap; }

.flex-vertical {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: flex-start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  height: 100%; }

.flex-item {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1; }

.flex-item-vertical {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1; }

#toast {
  z-index: 2;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(56, 56, 56, 0.8);
  border-radius: 45px;
  max-width: 90%;
  font-size: 13px;
  color: #fff;
  text-align: center;
  word-break: break-all;
  padding: 3px 10px; }

#select-toast .box {
  width: 270px;
  text-align: center;
  background-color: white;
  border-radius: 4px;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 999; }
  #select-toast .box .text {
    padding: 25px 15px 20px; }
    #select-toast .box .text .title {
      padding-bottom: 15px;
      font-size: 16px;
      font-weight: bold; }
    #select-toast .box .text .msg {
      color: #888888;
      line-height: 22.5px;
      max-height: 200px; }
  #select-toast .box .select-list {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: flex-start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    align-items: stretch;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-box-orient: horizontal;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap; }
    #select-toast .box .select-list::before {
      border-top: 1px solid #eee;
      width: 100%;
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      -webkit-transform: scaleY(0.5);
      -moz-transform: scaleY(0.5);
      -ms-transform: scaleY(0.5);
      -o-transform: scaleY(0.5);
      transform: scaleY(0.5);
      -webkit-transform-origin: 50% 0 0;
      -moz-transform-origin: 50% 0 0;
      -ms-transform-origin: 50% 0;
      -o-transform-origin: 50% 0;
      transform-origin: 50% 0 0; }
    #select-toast .box .select-list .item {
      -webkit-box-flex: 1;
      -webkit-flex: 1;
      flex: 1;
      line-height: 41px;
      color: #999; }
      #select-toast .box .select-list .item:not(:first-child) {
        position: relative; }
        #select-toast .box .select-list .item:not(:first-child)::after {
          border-left: 1px solid #eee;
          height: 100%;
          content: "";
          position: absolute;
          top: 0;
          left: 0;
          -webkit-transform: scaleX(0.5);
          -moz-transform: scaleX(0.5);
          -ms-transform: scaleX(0.5);
          -o-transform: scaleX(0.5);
          transform: scaleX(0.5);
          -webkit-transform-origin: 0 50% 0;
          -moz-transform-origin: 0 50% 0;
          -ms-transform-origin: 0 50%;
          -o-transform-origin: 0 50%;
          transform-origin: 0 50% 0; }
      #select-toast .box .select-list .item.active {
        color: #D75C23; }

.header {
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 1000px;
  background-color: #333333;
  border-bottom: 3px solid #333333;
}
.header .header-box {
  background-color: #333333;
  color: #fff;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
    .header .header-box .header-left {
      display: flex;
      align-items: center;
    }
      .header .header-box .header-left .logo {
        width: 45px;
        margin-right: 18px;
      }
      .header .header-box .header-left .title {
        font-size: 24px;
        white-space: nowrap;
        color: #fff;
      }
        .header .header-box .header-left .title span {
          font-size: 16px;
          color: #fff;
        }
    .header .header-box .header-right {
      display: flex;
      align-items: center;
    }
      .header .header-box .header-right .list {
        display: flex;
        align-items: center;
      }
        .header .header-box .header-right .list .item {
          position: relative;
          color: #999;
          text-align: center;
          font-size: 16px;
          height: 70px;
          line-height: 70px;
          cursor: pointer;
          padding: 0 20px;
          transition: all 0.3s;
          /* 移除overflow: hidden，它会阻止下拉菜单显示 */
        }
          .header .header-box .header-right .list .item.active,
          .header .header-box .header-right .list .item:hover {
            color: #fff;
            font-size: 18px;
            border-bottom: 3px solid #19b2ff;
          }
          .header .header-box .header-right .list .item.more:after {
            content: '';
            display: inline-block;
            width: 0;
            height: 0;
            border: 6px solid;
            border-color: #999 transparent transparent;
            border-bottom: 0;
            margin-left: 6px;
            vertical-align: middle;
          }
          /* 增强下拉效果的特异性和可靠性 */
          .header .header-box .header-right .list .item.more:hover .option {
            display: block !important;
            z-index: 9999 !important; /* 确保足够高的层级 */
          }
          .header .header-box .header-right .list .item.more:hover:after {
            border-color: #fff transparent transparent;
          }
          .header .header-box .header-right .list .item .option {
            display: none;
            position: absolute;
            top: 70px;
            right: 0;
            width: 180px;
            background-color: rgba(15, 15, 14, 0.95); /* 稍微增加不透明度 */
            box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.2); /* 增强阴影效果 */
            border-radius: 4px;
            overflow: hidden;
            z-index: 9999; /* 提高层级 */
            padding: 5px 0;
            border: 1px solid rgba(255, 255, 255, 0.1); /* 增加边框以增强可见性 */
          }
            .header .header-box .header-right .list .item .option .op {
              display: block;
              padding: 10px 20px;
              font-size: 14px;
              color: #999;
              transition: all 0.3s;
              cursor: pointer;
            }
            .header .header-box .header-right .list .item .option .op:hover {
              color: #fff;
              background-color: rgba(255, 255, 255, 0.1);
            }

.footer {
  background-color: #3e3e3e; }
  .footer .foot {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 70px;
    text-align: center;
    color: rgba(255, 255, 255, 0.65);
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: space-between;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-box-orient: horizontal;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap; }
    .footer .foot .item {
      -webkit-box-flex: 1;
      -webkit-flex: 1;
      flex: 1; }
      .footer .foot .item.explain {
        text-align: left; }
    .footer .foot .info .info-logo {
      width: 80px; }
    .footer .foot .info .name {
      font-size: 30px;
      color: #fff; }
    .footer .foot .text {
      line-height: 30px; }
      .footer .foot .text.record:before {
        content: '';
        display: inline-block;
        width: 20px;
        height: 20px;
        vertical-align: middle;
        background: url("../images/logo-1.png") center/cover no-repeat transparent; }
    .footer .foot .box img {
      width: 150px;
      border-radius: 2px; }
      .footer .foot .box img:first-child {
        margin-right: 10px; }

.ios-select-widget-box.olay.five-level-box {
  background-color: rgba(0, 0, 0, 0.5); }

[contenteditable]:empty::before {
  color: #BEBFC0; }

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #888; }

#no-data {
  height: 100vh;
  text-align: center;
  color: #999999;
  font-size: 13px;
  line-height: 18px;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap; }
  #no-data.height1 {
    height: 10vh; }
  #no-data.height2 {
    height: 20vh; }
  #no-data.height3 {
    height: 30vh; }
  #no-data.height4 {
    height: 40vh; }
  #no-data.height5 {
    height: 50vh; }
  #no-data.height6 {
    height: 60vh; }
  #no-data.height7 {
    height: 70vh; }
  #no-data.height8 {
    height: 80vh; }
  #no-data.height9 {
    height: 90vh; }
  #no-data::before {
    content: '';
    display: block;
    height: 178px;
    width: 186px;
    margin: 0 auto 17px;
    background: url("../images/icon-home.png") center bottom/186px auto no-repeat transparent; }
  #no-data.wallet::before {
    background: url("../images/bitmap-wallet-detail.png") center bottom/186px auto no-repeat transparent; }

.rich-text {
  max-width: 100%; }

.fixed {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5); }

.screen {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: #fff;
  border-radius: 6px;
  width: 260px;
  text-align: center; }
  .screen .scr-title {
    font-size: 15px;
    color: #000;
    font-weight: bold;
    padding: 25px 0 15px;
    line-height: 21px; }
  .screen .scr-message {
    font-size: 14px;
    color: #666;
    padding: 0 15px 20px;
    line-height: 20px; }
  .screen .scr-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: flex-start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    align-items: stretch;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-box-orient: horizontal;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    position: relative; }
    .screen .scr-box::before {
      border-top: 1px solid #706776;
      width: 100%;
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      -webkit-transform: scaleY(0.5);
      -moz-transform: scaleY(0.5);
      -ms-transform: scaleY(0.5);
      -o-transform: scaleY(0.5);
      transform: scaleY(0.5);
      -webkit-transform-origin: 50% 0 0;
      -moz-transform-origin: 50% 0 0;
      -ms-transform-origin: 50% 0;
      -o-transform-origin: 50% 0;
      transform-origin: 50% 0 0; }
    .screen .scr-box::before {
      border-color: #ddd; }
    .screen .scr-box .scr-item {
      -webkit-box-flex: 1;
      -webkit-flex: 1;
      flex: 1;
      height: 41px;
      line-height: 41px;
      font-size: 15px;
      color: #999;
      position: relative; }
      .screen .scr-box .scr-item::before {
        border-right: 1px solid #706776;
        height: 100%;
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        -webkit-transform: scaleX(0.5);
        -moz-transform: scaleX(0.5);
        -ms-transform: scaleX(0.5);
        -o-transform: scaleX(0.5);
        transform: scaleX(0.5);
        -webkit-transform-origin: 100% 50% 0;
        -moz-transform-origin: 100% 50% 0;
        -ms-transform-origin: 100% 50%;
        -o-transform-origin: 100% 50%;
        transform-origin: 100% 50% 0; }
      .screen .scr-box .scr-item::before {
        border-color: #ddd; }
      .screen .scr-box .scr-item:last-of-type::before {
        border: none; }
      .screen .scr-box .scr-item.color {
        color: #D75C23; }

.wrap .banner .swiper-container .swiper-wrapper .slide {
  position: relative;
  height: 500px;
  background: url("../images/bitmap-home-about-us-bg.jpg") center/cover no-repeat transparent; }
  .wrap .banner .swiper-container .swiper-wrapper .slide .word {
    text-align: center; }
    .wrap .banner .swiper-container .swiper-wrapper .slide .word .title {
  font-size: 40px;
  line-height: 500px;
  color: #fff;
}

.wrap .content {
  padding-top: 50px;
  padding-bottom: 100px;
}

/* 媒体查询 - 平板和手机 */
@media (max-width: 768px) {
  /* 适配移动端导航 */
  .header-right {
    display: none;
  }
  
  /* 调整Logo和标题大小 */
  .header-left .logo {
    width: 40px;
    height: 40px;
  }
  
  .header-left .title {
    font-size: 16px;
  }
  
  .header-left .title span {
    font-size: 12px;
  }
  
  /* 调整banner高度 */
  .banner {
    height: 180px;
  }
  
  /* 调整内容区域间距 */
  .wrap .content {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  
  /* 调整标题和文本大小 */
  h1 {
    font-size: 1.5rem;
    line-height: 1.4;
  }
  
  h2 {
    font-size: 1.3rem;
    line-height: 1.3;
  }
  
  h3 {
    font-size: 1.1rem;
    line-height: 1.3;
  }
  
  p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  /* 调整内容区块边距 */
  .content-item {
    padding: 1rem;
  }
}

/* 媒体查询 - 小屏幕手机 */
@media (max-width: 480px) {
  /* 进一步调整标题大小 */
  h1 {
    font-size: 1.3rem;
  }
  
  h2 {
    font-size: 1.1rem;
  }
  
  h3 {
    font-size: 1rem;
  }
  
  p {
    font-size: 0.85rem;
  }
  
  /* 调整banner高度 */
  .banner {
    height: 150px;
  }
  
  /* 调整内容区域内边距 */
  .content {
    padding: 1rem;
  }
}
.wrap .content .content-list .content-item {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: space-between;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap; }
  .wrap .content .content-list .content-item .item-left {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    flex: 1; }
    .wrap .content .content-list .content-item .item-left .title {
      font-size: 40px; }
    .wrap .content .content-list .content-item .item-left .description {
      padding-top: 20px;
      padding-right: 50px;
      font-size: 16px;
      line-height: 25px; }
      .wrap .content .content-list .content-item .item-left .description p {
        text-indent: 32px; }
      .wrap .content .content-list .content-item .item-left .description .service {
        padding-top: 20px;
        padding-left: 20px; }
        .wrap .content .content-list .content-item .item-left .description .service .title {
          font-size: 20px; }
.wrap .content .idea {
  background-color: #f9f9f9;
  padding: 20px 0 80px; }
  .wrap .content .idea .title {
    font-size: 40px;
    text-align: center;
    padding: 30px 0; }
  .wrap .content .idea .list {
    max-width: 1000px;
    font-size: 0;
    margin: 0 auto; }
    .wrap .content .idea .list .item {
      display: inline-block;
      width: 33.33%; }
      .wrap .content .idea .list .item .block {
        margin: 10px;
        background-color: #e7e7e7;
        border-radius: 4px;
        overflow: hidden;
        cursor: pointer;
        -webkit-transition: transform 0.3s;
        -moz-transition: transform 0.3s;
        -ms-transition: transform 0.3s;
        -o-transition: transform 0.3s;
        transition: transform 0.3s; }
        .wrap .content .idea .list .item .block:hover {
          box-shadow: 0 5px 20px rgba(153, 153, 153, 0.44);
          -webkit-transform: scale(1.02);
          -moz-transform: scale(1.02);
          -ms-transform: scale(1.02);
          -o-transform: scale(1.02);
          transform: scale(1.02); }
        .wrap .content .idea .list .item .block img {
          width: 100%; }
        .wrap .content .idea .list .item .block .sub-title {
          padding: 10px 0;
          text-align: center;
          font-size: 18px; }
        .wrap .content .idea .list .item .block .text {
          padding-bottom: 50px;
          text-align: center;
          font-size: 16px; }
.wrap .content .honor {
  padding: 20px 0 80px; }
  .wrap .content .honor .title {
    font-size: 40px;
    text-align: center;
    padding: 30px 0; }
  .wrap .content .honor .list .swiper-container {
    max-width: 1200px; }
  .wrap .content .honor .list .swiper-wrapper {
    max-width: 1200px !important; }
  .wrap .content .honor .list .swiper-slide {
    text-align: center;
    height: 300px;
  }

/* 底部信息 - 与index.css保持一致 */
.footer {
  background-color: #333;
  color: #fff;
  padding: 40px 0;
}

.footer-box {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
}

.footer-left {
  flex: 1;
  max-width: 400px;
}

.footer-title {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 20px;
}

.footer-text p {
  font-size: 14px;
  color: #999;
  margin-bottom: 10px;
  line-height: 1.6;
}

.footer-copyright {
  margin-top: 30px;
  font-size: 12px;
  color: #666;
}

.footer-copyright p {
  margin-bottom: 5px;
}

.footer-right {
  flex: 2;
}

.footer-nav {
  display: flex;
  justify-content: space-between;
}

.footer-item {
  min-width: 150px;
}

.footer-item-title {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 20px;
}

.footer-item-link {
  display: block;
  font-size: 14px;
  color: #999;
  margin-bottom: 10px;
  transition: color 0.3s;
}

.footer-item-link:hover {
  color: #409EFF;
}

.footer-item img {
  width: 100px;
  border-radius: 4px;
  border: 2px solid #444;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .header-box {
    height: 60px;
    flex-direction: column;
    padding: 10px;
  }
  
  .footer-box {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-nav {
    flex-direction: column;
    align-items: center;
  }
  
  .footer-item {
    margin-bottom: 20px;
    text-align: center;
  }
}
