@charset "UTF-8";
/* 背景图 */
.bg-cover {
  background-size: cover;
  background-position: center;
}

.bg-contain {
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

/* 文本对齐 */
.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.text-justify {
  text-align: justify;
}

/* 富文本样式控制 */
.rich-text * {
  max-width: 100%;
  text-wrap: wrap !important;
}

.rich-text img {
  height: auto;
  vertical-align: top;
}

.rich-text ol,
.rich-text ul {
  margin-left: 1.5em;
}

/*编辑器盒子加editor-box这个类，editor-box以及里面的h1,h2,h3,h4,h5,h6,ul,ol,li,i.b,strong,p等标签的样式根据后台编辑器的默认样式而变*/
.editor-box {
  font-size: 16px;
  line-height: 1.5;
}

.editor-box h1 {
  display: block;
  font-size: 2em;
  margin-block-start: 0.67em;
  margin-block-end: 0.67em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  font-weight: bold;
  unicode-bidi: isolate;
}

.editor-box h2 {
  display: block;
  font-size: 1.5em;
  margin-block-start: 0.83em;
  margin-block-end: 0.83em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  font-weight: bold;
  unicode-bidi: isolate;
}

.editor-box h3 {
  display: block;
  font-size: 1.17em;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  font-weight: bold;
  unicode-bidi: isolate;
}

.editor-box h4 {
  display: block;
  margin-block-start: 1.33em;
  margin-block-end: 1.33em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  font-weight: bold;
  unicode-bidi: isolate;
}

.editor-box h5 {
  display: block;
  font-size: 0.83em;
  margin-block-start: 1.67em;
  margin-block-end: 1.67em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  font-weight: bold;
  unicode-bidi: isolate;
}

.editor-box h6 {
  display: block;
  font-size: 0.67em;
  margin-block-start: 2.33em;
  margin-block-end: 2.33em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  font-weight: bold;
  unicode-bidi: isolate;
}

.editor-box ul {
  display: block;
  list-style-type: disc;
  margin-block-start: 1em;
  margin-block-end: 1em;
  padding-inline-start: 40px;
  unicode-bidi: isolate;
}

.editor-box ol {
  display: block;
  list-style-type: decimal;
  margin-block-start: 1em;
  margin-block-end: 1em;
  padding-inline-start: 40px;
  unicode-bidi: isolate;
}

.editor-box li {
  display: list-item;
  text-align: -webkit-match-parent;
  unicode-bidi: isolate;
}

.editor-box i {
  font-style: italic;
}

.editor-box b {
  font-weight: bolder;
}

.editor-box strong {
  font-weight: bolder;
}

.editor-box p {
  display: block;
  margin-block-start: 5px;
  margin-block-end: 5px;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  unicode-bidi: isolate;
}

/* flex布局 */
.flex {
  display: flex;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-between {
  justify-content: space-between;
}

.flex-middle {
  align-items: center;
}

.flex-top {
  align-items: flex-start;
}

.flex-bottom {
  align-items: flex-end;
}

.flex-left {
  justify-content: flex-start;
}

.flex-right {
  justify-content: flex-end;
}

.flex-center {
  align-items: center;
  justify-content: center;
}

/* 参考 tailwindcss */
.flex-1 {
  flex: 1 1 0%;
}

/* grow */
.grow {
  flex-grow: 1;
}

.grow-0 {
  flex-grow: 0;
}

/* shrink */
.shrink {
  flex-shrink: 1;
}

.shrink-0 {
  flex-shrink: 0;
}

/* flex-direction */
.flex-row {
  flex-direction: row;
}

.flex-row-reverse {
  flex-direction: row-reverse;
}

.flex-col {
  flex-direction: column;
}

.flex-col-reverse {
  flex-direction: column-reverse;
}

/* flex-wrap */
.flex-wrap {
  flex-wrap: wrap;
}

.felx-wrap-reverse {
  flex-wrap: wrap-reverse;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

/* align-items */
.items-start {
  align-items: flex-start;
}

.items-center {
  align-items: center;
}

.items-end {
  align-items: flex-end;
}

.items-baseline {
  align-items: baseline;
}

.items-stretch {
  align-items: stretch;
}

/* justify-content */
.justify-normal {
  justify-content: normal;
}

.justify-start {
  justify-content: flex-start;
}

.justify-end {
  justify-content: flex-end;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-around {
  justify-content: space-around;
}

.justify-evenly {
  justify-content: space-evenly;
}

.justify-stretch {
  justify-content: stretch;
}

/* rem - end */
/* 媒体 */
/* 固定尺寸的图片 */
.c-pic {
  overflow: hidden;
  position: relative;
  display: block;
}

.c-pic .img {
  transition: all 0.5s;
  display: block;
}

.c-pic .img img {
  display: none;
}

.media iframe,
.media img,
.media video {
  display: block;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.media-ratio {
  position: relative;
}

.media-ratio iframe,
.media-ratio img,
.media-ratio video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/* 字重 */
.f-Light {
  font-weight: lighter;
}

.f-Regular,
.f-Normal {
  font-weight: normal;
}

.f-Medium,
.f-SemiBold,
.f-DemiBold,
.f-Bold,
.f-Heavy {
  font-weight: bold;
}

.md-OEM1-1 {
  padding-top: 1rem;
  padding-bottom: 0.75rem;
  position: relative;
}
.md-OEM1-1 .text {
  width: calc( 700 / 1520 * 100%);
  padding-top: 0.36rem;
}
.md-OEM1-1 .c-pic {
  width: calc( 745 / 1520 * 100%);
}
.md-OEM1-1 .img {
  padding-top: calc( 500 / 745 * 100%);
}
.md-OEM1-1 .com-tt {
  line-height: 1.2;
}
.md-OEM1-1 .intro {
  color: #555;
  line-height: 1.5;
  margin-top: 0.27rem;
}
@media screen and (max-width: 900px) {
  .md-OEM1-1 .text {
    width: 100%;
  }
  .md-OEM1-1 .c-pic {
    width: 100%;
    margin-top: 0.3rem;
  }
}

.md-OEM1-2 {
  padding-top: 1.38rem;
  padding-bottom: 1.2rem;
  position: relative;
  background-color: #f5f5f5;
}
.md-OEM1-2 .t-list {
  margin-top: 0.6rem;
}
.md-OEM1-2 .item {
  margin-bottom: 1.2rem;
}
.md-OEM1-2 .item:last-child {
  margin-bottom: 0;
}
.md-OEM1-2 .box-1 .desc {
  margin-top: 0.27rem;
}
.md-OEM1-2 .box-1 .list {
  background-color: #fff;
  margin-top: 0.5rem;
}
.md-OEM1-2 .box-1 .text {
  width: 50%;
  padding: 0.2rem 1rem;
}
.md-OEM1-2 .box-1 .tbox {
  width: 100%;
}
.md-OEM1-2 .box-1 .c-pic {
  width: 50%;
}
.md-OEM1-2 .box-1 .img {
  padding-top: calc( 440 / 760 * 100%);
}
.md-OEM1-2 .box-1 .title {
  color: #333;
}
.md-OEM1-2 .box-1 .intro {
  line-height: 1.5;
}
.md-OEM1-2 .box-1 ul {
  padding-left: 1em;
}
.md-OEM1-2 .box-1 li::marker {
  color: #e62129;
}
@media screen and (min-width: 901px) {
  .md-OEM1-2 .box-1 .li:nth-child(2n) {
    flex-direction: row-reverse;
  }
}
@media screen and (max-width: 900px) {
  .md-OEM1-2 .box-1 .text {
    width: 100%;
    padding: 0.3rem;
  }
  .md-OEM1-2 .box-1 .c-pic {
    width: 100%;
    margin-top: 0.2rem;
  }
}
.md-OEM1-2 .box-2 .flex-box {
  background-color: #fff;
  margin-top: 0.5rem;
}
.md-OEM1-2 .box-2 .c-pic {
  width: 50%;
}
.md-OEM1-2 .box-2 .img {
  padding-top: calc( 540 / 760 * 100%);
  height: 100%;
}
.md-OEM1-2 .box-2 .text {
  width: calc( 680 / 1520 * 100%);
  padding: 0.2rem 0;
}
.md-OEM1-2 .box-2 .intro {
  margin-top: 0.54rem;
}
.md-OEM1-2 .box-2 ul {
  padding-left: 1em;
}
.md-OEM1-2 .box-2 li::marker {
  color: #e62129;
}
@media screen and (min-width: 901px) {
  .md-OEM1-2 .box-2.type2 {
    flex-direction: row-reverse;
  }
}
@media screen and (max-width: 900px) {
  .md-OEM1-2 .box-2 .c-pic {
    width: 100%;
  }
  .md-OEM1-2 .box-2 .text {
    width: 100%;
    padding: 0.3rem;
  }
}
.md-OEM1-2 .box-3 .desc {
  margin-top: 0.27rem;
}
.md-OEM1-2 .box-3 .list {
  margin-top: 0.6rem;
}
.md-OEM1-2 .box-3 .li {
  width: 25%;
  text-align: center;
  font-size: 0;
  margin-bottom: 0.3rem;
}
.md-OEM1-2 .box-3 .top {
  padding: 0.15rem;
  display: inline-block;
  position: relative;
}
.md-OEM1-2 .box-3 .top::before {
  content: "";
  position: absolute;
  left: 0%;
  top: 0%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px dashed #e62129;
  box-sizing: border-box;
}
.md-OEM1-2 .box-3 .icon {
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  position: relative;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #e62129;
}
.md-OEM1-2 .box-3 .icon img {
  width: 45%;
  height: 45%;
  -o-object-fit: contain;
     object-fit: contain;
}
.md-OEM1-2 .box-3 .txt {
  margin-top: 0.27rem;
}
.md-OEM1-2 .box-3 .tip {
  color: #e62129;
  font-weight: bold;
  margin-top: 0.5rem;
}
@media screen and (max-width: 900px) {
  .md-OEM1-2 .box-3 .li {
    width: 50%;
    padding: 0.2rem;
  }
}

.md-OEM1-3 {
  padding-top: 1rem;
  padding-bottom: 0.45rem;
  position: relative;
}
.md-OEM1-3 .nsw {
  width: auto;
  min-width: 5.05rem;
  background-color: #f5f5f5;
  margin-right: 4px;
  text-align: center;
  padding: 0.2rem 0.1rem;
  font-weight: bold;
  color: #222;
  cursor: pointer;
}
.md-OEM1-3 .nsw.on {
  background-color: #e62129;
  color: #fff;
}
.md-OEM1-3 .box {
  background-color: #f5f5f5;
  position: relative;
  margin-top: 4px;
}
.md-OEM1-3 .bitem {
  position: absolute;
  left: -200vw;
  top: 0;
  width: 100%;
  opacity: 0;
}
.md-OEM1-3 .bitem.show {
  position: relative;
  left: 0;
  opacity: 1;
  transition: opacity 0.3s;
}
.md-OEM1-3 .b-box {
  padding: 0.5rem;
}
.md-OEM1-3 .text {
  width: calc( 540 / 1420 * 100%);
  padding-top: 0.3rem;
}
.md-OEM1-3 .intro {
  color: #222;
  line-height: 1.5;
  margin-top: 0.27rem;
}
.md-OEM1-3 .list {
  margin-top: 0.5rem;
}
.md-OEM1-3 .li {
  position: relative;
  margin-bottom: 0.16rem;
  padding-left: 0.2rem;
}
.md-OEM1-3 .li::before {
  content: "";
  width: 0.5em;
  height: 0.5em;
  border-radius: 50%;
  background-color: #e62129;
  position: absolute;
  left: 0;
  top: calc(50% - 0.25em);
}
.md-OEM1-3 .c-pic {
  width: calc( 760 / 1420 * 100%);
}
.md-OEM1-3 .img {
  padding-top: calc( 500 / 760 * 100%);
  height: 100%;
}
@media screen and (max-width: 900px) {
  .md-OEM1-3 .text {
    width: 100%;
  }
  .md-OEM1-3 .c-pic {
    width: 100%;
  }
}

.md-OEM2-1 {
  position: relative;
  padding-top: 0.92rem;
  padding-bottom: 1.2rem;
}
.md-OEM2-1 .com-tt {
  line-height: 1.2;
}
.md-OEM2-1 .intro {
  line-height: 1.5;
  color: #555;
  padding: 0 0.2rem;
  margin-top: 0.38rem;
}
.md-OEM2-1 .img {
  margin-top: 0.56rem;
  position: relative;
  padding-top: calc( 500 / 1520 * 100%);
}

.md-OEM2-2 {
  padding-top: 1.38rem;
  padding-bottom: 1.2rem;
  position: relative;
  background-color: #f5f5f5;
}
.md-OEM2-2 .t-list {
  margin-top: 0.8rem;
}
.md-OEM2-2 .item {
  margin-bottom: 1.2rem;
}
.md-OEM2-2 .item:last-child {
  margin-bottom: 0;
}
.md-OEM2-2 .item:nth-child(2n) .box-1 {
  flex-direction: row-reverse;
}
.md-OEM2-2 .box-1 .text {
  width: calc( 660 / 1520 * 100%);
}
.md-OEM2-2 .box-1 .tbox {
  width: 100%;
}
.md-OEM2-2 .box-1 .c-pic {
  width: 50%;
}
.md-OEM2-2 .box-1 .title {
  color: #333;
}
.md-OEM2-2 .box-1 .intro {
  line-height: 1.5;
  margin-top: 0.6rem;
}
.md-OEM2-2 .box-1 .img {
  padding-top: 100%;
}
.md-OEM2-2 .box-1 ul {
  padding-left: 1em;
}
.md-OEM2-2 .box-1 li::marker {
  color: #e62129;
}
@media screen and (max-width: 900px) {
  .md-OEM2-2 .box-1 .text {
    width: 100%;
  }
  .md-OEM2-2 .box-1 .c-pic {
    width: 100%;
    margin-top: 0.2rem;
  }
}
.md-OEM2-2 .box-2 .desc {
  line-height: calc(30 / 16);
  margin-top: 0.22rem;
}
.md-OEM2-2 .box-2 .flex-box {
  background-color: #fff;
  margin-top: 0.54rem;
}
.md-OEM2-2 .box-2 .c-pic {
  width: 50%;
}
.md-OEM2-2 .box-2 .img {
  padding-top: calc( 500 / 760 * 100%);
  height: 100%;
}
.md-OEM2-2 .box-2 .text {
  width: 50%;
  padding: 0.2rem 0;
  padding-left: 1.3rem;
}
.md-OEM2-2 .box-2 .li {
  padding: 0.2rem 0;
}
.md-OEM2-2 .box-2 .ic {
  height: 0.9rem;
  flex-shrink: 0;
  margin-right: 0.3rem;
}
@media screen and (max-width: 900px) {
  .md-OEM2-2 .box-2 .c-pic {
    width: 100%;
  }
  .md-OEM2-2 .box-2 .text {
    width: 100%;
  }
}
.md-OEM2-2 .box-3 .text {
  width: calc( 660 / 1520 * 100%);
}
.md-OEM2-2 .box-3 .tbox {
  width: 100%;
}
.md-OEM2-2 .box-3 .c-pic {
  width: 50%;
}
.md-OEM2-2 .box-3 .img {
  padding-top: calc( 540 / 760 * 100%);
}
.md-OEM2-2 .box-3 .title {
  color: #333;
}
.md-OEM2-2 .box-3 .intro {
  line-height: 1.5;
  margin-top: 0.5rem;
}
.md-OEM2-2 .box-3 ul {
  padding-left: 1em;
}
.md-OEM2-2 .box-3 li::marker {
  color: #e62129;
}
@media screen and (max-width: 900px) {
  .md-OEM2-2 .box-3 .text {
    width: 100%;
  }
  .md-OEM2-2 .box-3 .c-pic {
    width: 100%;
    margin-top: 0.2rem;
  }
}

.md-OEM2-3 {
  position: relative;
  padding-top: 0.96rem;
  padding-bottom: 0.8rem;
}
.md-OEM2-3 .list {
  margin-top: 0.6rem;
}
.md-OEM2-3 .li {
  width: calc( 480 / 1520 * 100%);
  margin-right: calc( 40 / 1520 * 100%);
  margin-bottom: 0.4rem;
}
@media screen and (min-width: 901px) {
  .md-OEM2-3 .li:nth-child(3) {
    margin-right: 0;
  }
  .md-OEM2-3 .li:nth-child(n+4) {
    width: calc( 740 / 1520 * 100%);
  }
  .md-OEM2-3 .li:nth-child(n+4):nth-child(odd) {
    margin-right: 0;
  }
}
@media screen and (max-width: 900px) {
  .md-OEM2-3 .list {
    justify-content: space-between;
  }
  .md-OEM2-3 .li {
    width: 48%;
    margin-right: 0;
  }
}
@media screen and (max-width: 500px) {
  .md-OEM2-3 .li {
    width: 100%;
  }
}
.md-OEM2-3 .dd {
  background-color: #f5f5f5;
  padding: 0.3rem;
  height: 100%;
  position: relative;
}
.md-OEM2-3 .dd:hover::after {
  transform: scaleX(1);
}
.md-OEM2-3 .dd:hover .img {
  transform: scale(1.1);
}
.md-OEM2-3 .dd:hover .title {
  color: #e62129;
}
.md-OEM2-3 .dd::after {
  content: "";
  position: absolute;
  left: 0%;
  bottom: 0;
  width: 100%;
  height: 0.05rem;
  background-color: #e62129;
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.5s;
}
.md-OEM2-3 .c-pic {
  width: 1.5rem;
  margin: 0 auto;
}
.md-OEM2-3 .img {
  padding-top: 60%;
}
.md-OEM2-3 .text {
  margin-top: 0.28rem;
}
.md-OEM2-3 .title {
  transition: 0.5s;
}
.md-OEM2-3 .intro {
  line-height: 1.5;
  color: #666;
  margin-top: 0.16rem;
}

.md-OEM2-4 {
  background-color: #f5f5f5;
  position: relative;
  padding-top: 1rem;
  padding-bottom: 1.2rem;
}
.md-OEM2-4 .text {
  width: calc( 700 / 1520 * 100%);
  padding-top: 0.3rem;
}
.md-OEM2-4 .intro {
  margin-top: 0.56rem;
}
.md-OEM2-4 ul {
  padding-left: 1em;
}
.md-OEM2-4 li::marker {
  color: #e62129;
}
.md-OEM2-4 .c-pic {
  width: 50%;
}
.md-OEM2-4 .img {
  padding-top: calc( 540 / 760 * 100%);
}
@media screen and (max-width: 900px) {
  .md-OEM2-4 .text {
    width: 100%;
  }
  .md-OEM2-4 .c-pic {
    width: 100%;
  }
}

.md-OEM-banner {
  color: #fff;
  position: relative;
  min-height: 34.375vw;
}
.md-OEM-banner .img {
  position: absolute;
  left: 0%;
  top: 0%;
  width: 100%;
  height: 100%;
}
.md-OEM-banner .text {
  position: relative;
  padding-top: 2.3rem;
  padding-bottom: 1rem;
}
.md-OEM-banner .d2 {
  margin-top: 0.39rem;
}
.md-OEM-banner .d3 {
  margin-top: 0.59rem;
}
.md-OEM-banner .btn {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  padding: 0.16rem 0.3rem;
  border-radius: 1rem;
  background-color: #e62129;
}
.md-OEM-banner .btn svg {
  width: 1.1em;
  height: 1.1em;
  margin-right: 0.1rem;
}

.md-OEM-Workflow {
  position: relative;
  padding-top: 0.7rem;
  padding-bottom: 0.8rem;
}
.md-OEM-Workflow .swiper {
  margin-top: 0.84rem;
  position: relative;
}
.md-OEM-Workflow .sw {
  width: 20%;
}
.md-OEM-Workflow .sw:nth-child(1) .top::before {
  left: 50%;
  width: 50%;
}
.md-OEM-Workflow .sw:last-child .top::before {
  width: 50%;
}
.md-OEM-Workflow .sw:last-child .top::after {
  display: none;
}
.md-OEM-Workflow .top {
  position: relative;
  display: flex;
  justify-content: center;
}
.md-OEM-Workflow .top::before {
  content: "";
  position: absolute;
  left: 0%;
  top: 50%;
  width: 100%;
  height: 1px;
  border-top: 1px dashed #ddd;
}
.md-OEM-Workflow .top::after {
  content: "";
  position: absolute;
  left: calc(100% - 0.25em);
  top: calc(50% - 0.5em);
  border-bottom: 0.5em solid transparent;
  border-top: 0.5em solid transparent;
  border-left: 0.5em solid #ddd;
}
.md-OEM-Workflow .icon {
  width: 1.2rem;
  height: 1.2rem;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #e62129;
  border-radius: 50%;
}
.md-OEM-Workflow .icon img {
  width: 45%;
  height: 45%;
  -o-object-fit: contain;
     object-fit: contain;
}
.md-OEM-Workflow .bot {
  margin-top: 0.45rem;
  padding: 0 0.1rem;
}
.md-OEM-Workflow .title {
  line-height: 1.5;
  color: #222;
}
.md-OEM-Workflow .intro {
  line-height: calc(24 / 14);
  color: #666;
  margin-top: 0.2rem;
}
@media screen and (max-width: 900px) {
  .md-OEM-Workflow .sw {
    width: 33.3%;
  }
}

.md-OEM-Service {
  position: relative;
  padding-top: 0.62rem;
  padding-bottom: 0.8rem;
}
.md-OEM-Service .desc {
  line-height: calc(30 / 16);
  margin-top: 0.15rem;
}
.md-OEM-Service .list {
  margin-top: 0.5rem;
}
.md-OEM-Service .li {
  width: calc(480 / 1520 * 100%);
  margin-right: calc(40 / 1520 * 100%);
}
.md-OEM-Service .li:nth-child(3n) {
  margin-right: 0;
}
.md-OEM-Service .li {
  margin-bottom: 0.4rem;
}
.md-OEM-Service .dd {
  background-color: #f5f5f5;
  padding: 0.4rem 0.3rem 0.3rem;
  transition: 0.5s;
}
.md-OEM-Service .dd:hover {
  background-color: #e62129;
}
.md-OEM-Service .dd:hover .icon {
  filter: brightness(0) invert(1);
}
.md-OEM-Service .dd:hover .title {
  color: #fff;
}
.md-OEM-Service .icon {
  transition: 0.5s;
}
.md-OEM-Service .icon img {
  height: 1em;
}
.md-OEM-Service .text {
  margin-top: 0.31rem;
}
.md-OEM-Service .title {
  color: #222;
  font-weight: bold;
  transition: 0.5s;
}
@media screen and (max-width: 900px) {
  .md-OEM-Service .list {
    justify-content: space-between;
  }
  .md-OEM-Service .li {
    width: 48%;
    margin-right: 0;
    margin-bottom: 4%;
  }
}

.md-OEM-Questions {
  background-color: #f5f5f5;
  position: relative;
  padding-top: 0.9rem;
  padding-bottom: 1.1rem;
}
.md-OEM-Questions .overflow {
  background-color: #fff;
  margin-top: 0.62rem;
  max-height: 5.1rem;
  overflow-y: auto;
}
.md-OEM-Questions .overflow::-webkit-scrollbar {
  /*滚动条整体样式*/
  width: 0.1rem;
  height: 1px;
}
.md-OEM-Questions .overflow::-webkit-scrollbar-thumb {
  /*滚动条里面小方块*/
  background-color: #e62129;
}
.md-OEM-Questions .overflow::-webkit-scrollbar-track {
  /*滚动条里面轨道*/
  background-color: #e9e9e9;
}
.md-OEM-Questions .list {
  padding: 0.1rem 0.4rem;
}
.md-OEM-Questions .li {
  padding: 0.28rem 0;
  border-bottom: 1px solid #f5f5f5;
}
.md-OEM-Questions .li:hover .d1 {
  color: #e62129;
}
.md-OEM-Questions .d1 {
  color: #333;
  transition: 0.5s;
}
.md-OEM-Questions .d2 {
  color: #666;
  margin-top: 0.18rem;
  line-height: 1.25;
}

.md-OEM-Quote {
  position: relative;
  padding-top: 0.97rem;
  padding-bottom: 1.35rem;
  color: #fff;
  background-attachment: fixed;
}
.md-OEM-Quote .com-tt {
  color: #fff;
}
.md-OEM-Quote .desc {
  line-height: calc(30 / 16);
  margin-top: 0.27rem;
  margin-bottom: 0.72rem;
}
.md-OEM-Quote .btns {
  margin-top: 0.17rem;
}
.md-OEM-Quote .btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.16rem 0.1rem;
  border-radius: 1rem;
  background-color: #e62129;
  color: #fff;
  min-width: 3rem;
  margin: 0.1rem;
  transition: 0.5s;
}
.md-OEM-Quote .btn:hover {
  transform: translateY(0.1rem);
}
.md-OEM-Quote .btn svg {
  width: 1em;
  height: 1em;
  margin-right: 0.5em;
}
.md-thank-1 {
  padding: 2rem 0;
}
.md-thank-1 svg {
  width: 1.2rem;
  height: 1.2rem;
  color: #e62129;
}
.md-thank-1 .txt {
  margin-top: 0.3rem;
}