.banner-swiper {
  width: 100%;
}

.banner-swiper .image {
  width: 100%;
}

.banner-swiper .image img {
  width: 100%;
}

.module-header.default {
  --textColor: #fff;
  --imgUrl: url("../images/title-icon-1.svg");
}

.module-header {
  --textColor: #333333;
  --imgUrl: url("../images/title-icon.svg");
  text-align: center;
}

.module-header .title {
  position: relative;
  font-size: 0.44rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--textColor);
}

.module-header .title::after {
  content: "";
  position: absolute;
  width: 0.96rem;
  height: 0.32rem;
  right: -1.1rem;
  top: 50%;
  transform: translateY(-50%);
  background: var(--imgUrl);
  background-size: 100% 100%;
}

.module-header .title::before {
  content: "";
  position: absolute;
  width: 0.96rem;
  height: 0.32rem;
  left: -1.1rem;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  background: var(--imgUrl);
  background-size: 100% 100%;
}

.data {
  background: #f9f9f9;
  padding: 0.2rem;
  overflow: hidden;
}

.data .index-list {
  margin-top: 0.2rem;
  white-space: nowrap;
  overflow-x: auto;
  padding-bottom: 0.2rem;
}

.data .index-list .item {
  --nameColor: #333957;
  --bgColor: #e6e8f3;
  --valueColor: #333957;
  --display: none;
  margin-right: 0.2rem;
  display: inline-block;
  text-align: center;
  background: var(--bgColor);
  border-radius: 0.16rem;
  padding: 0.18rem 0.16rem;
}

.data .index-list .item .name {
  font-weight: 500;
  color: var(--nameColor);
}

.data .index-list .item .value {
  --iconUrl: "";
  color: var(--valueColor);
  font-weight: 600;
  line-height: 0.52rem;
}

.data .index-list .item .value .index-value {
  display: var(--display);
  font-size: 0.36rem;
}

.data .index-list .item .value .rate {
  position: relative;
  font-size: 0.24rem;
  padding-left: 0.2rem;
}

.data .index-list .item .value .rate::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 0.16rem;
  height: 0.2rem;
  background: var(--iconUrl);
  background-size: 100% 100%;
}

.data .index-list .item .up {
  --iconUrl: url("../images/up.svg");
  color: #d81e06;
}

.data .index-list .item .down {
  --iconUrl: url("../images/down.svg");
  color: #51b192;
}

.data .index-list .active {
  --nameColor: #fff;
  --bgColor: #204991;
  --valueColor: #fff;
  --display: inline-block;
}

.data .chart-container {
  padding: 0 0.2rem 0.2rem 0.2rem;
}

.data .chart-container .index-name {
  color: #404040;
}

.data .chart-container .line-chart {
  height: 4.5rem;
  min-height: 250px;
  overflow: hidden;
}

.price {
  background: url("../images/price-bg.png") no-repeat;
  background-size: 100% 100%;
  padding: 0.28rem 0.2rem;
}

.price .price-container {
  background: rgba(29, 74, 132, 0.69);
  border-radius: 0.2rem;
  padding: 0.26rem 0.2rem;
  overflow: hidden;
}

.price .price-container .title {
  font-size: 0.36rem;
  color: #fff;
  font-weight: 600;
}

.price .col-3 {
  width: 33.3%;
  text-align: center;
  float: left;
}

.price .thead {
  margin-top: 0.2rem;
  background: #1c4086;
  padding: 0.2rem 0;
  overflow: hidden;
}

.price .thead .col-3 {
  font-weight: 600;
  color: #fff;
}

.price .tbody {
  height: 6.8rem;
  overflow: hidden;
}

.price .tbody .item {
  margin-top: 0.16rem;
  background: #ffffff;
  padding: 0.2rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.price .tbody .item .col-3 {
  height: 100%;
  color: #070e30;
  font-size: 0.24rem;
}

.comment {
  background: #f8f8f8;
  padding: 0.2rem;
}

.comment .comment-list {
  margin-top: 0.36rem;
}

.comment .comment-list a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 2rem;
  font-size: 0.36rem;
  font-weight: 600;
  background: url("../images/comment-item-bg.png");
  background-size: 100% 100%;
  color: #fff;
  padding: 0 0.3rem;
  text-align: center;
}

.info {
  background: url("../images/info-bg.png");
  background-size: cover;
  padding: 0.2rem;
}

.info .info-list {
  margin-top: 0.4rem;
  background-color: #fff;
  box-shadow: 0px 0.06rem 0.08rem 0px rgba(0, 0, 0, 0.08);
  border-radius: 0.08rem;
}

.info .info-list a {
  margin-bottom: 0.15rem;
  display: block;
  padding: 0.16rem;
}

.info .info-list a:nth-child(1) .image {
  position: relative;
}

.info .info-list a:nth-child(1) .image .title {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0.94rem;
  line-height: 0.94rem;
  background: rgba(0, 0, 0, 0.62);
  text-align: center;
  color: #ffffff;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.info .info-list .title {
  margin-top: 0.15rem;
  font-size: 0.32rem;
  font-weight: 600;
  color: #575757;
}

.product {
  background: #1e3f88;
  padding: 0.2rem;
}

.product .product-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.product .product-list .item {
  margin-top: 0.3rem;
  width: 3.42rem;
  height: 3.62rem;
}

.product .product-list .image {
  position: relative;
  width: 100%;
  height: 100%;
}

.product .product-list .image img {
  width: 100%;
}

.product .product-list .image .name {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 0.32rem;
  text-align: center;
  min-height: 0.92rem;
}

.company {
  background: url("../images/company-bg.png");
  background-size: cover;
  padding: 0.2rem;
}

.company .company-list a {
  --textColor: #2b55a6;
  --bgColor: rgba(255, 255, 255, 0.7);
  display: block;
  margin-top: 0.24rem;
  background: var(--bgColor);
  color: var(--textColor);
  padding: 0.2rem;
  border-radius: 0.16rem;
  min-height: 2.44rem;
}

.company .company-list a .name {
  font-size: 0.36rem;
  font-weight: 600;
}

.company .company-list a .category {
  margin-top: 0.2rem;
  font-size: 0.24rem;
}

.company .company-list a:nth-child(2n) {
  --textColor: white;
  --bgColor: rgba(47, 80, 154, 0.7);
}
