@charset "UTF-8";
/*公共样式*/
html, body {
  font-family: PingFangSC-Light, "helvetica neue", "hiragino sans gb", arial, "microsoft yahei ui", "microsoft yahei", simsun, sans-serif;
  -ms-overflow-style: scrollbar;
  background: #fff;
  position: relative;
  overflow-x: hidden;
  font-size: 16px;
}

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, form, fieldset, input, textarea, p, blockquote, th, td, a {
  margin: 0;
  padding: 0;
  list-style-type: none;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

body {
  padding-right: 0 !important;
}

a, a:hover, a:focus, a:visited {
  text-decoration: none;
  outline: none !important;
  outline: 0;
}

a {
  transition: all 0.3s ease-in-out;
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  margin: 0px;
  padding: 0px;
}

input, select, textarea {
  -webkit-appearance: none; /*清除ios默认圆角*/
  border-radius: 0;
}

/* select::-ms-expand { display: none; }　 */
/*滚动条样式*/
html::-webkit-scrollbar {
  width: 6px;
  height: 4px;
  z-index: 9;
  background-color: rgba(255, 255, 255, 0);
}

html::-webkit-scrollbar-thumb {
  border-radius: 0;
  width: 4px;
  height: 4px;
  background-color: #eaeaea;
}

/* html::-webkit-scrollbar-track {
  border-radius: 0;
  background-color: #23297a;
} */
img {
  max-width: 100%;
}

/* 公共样式 */
.w {
  width: 100%;
  max-width: 1600px;
  margin: 0px auto;
}

.w-1200 {
  width: 100%;
  max-width: 1200px;
  margin: 0px auto;
}

h1 {
  font-size: 2rem;
  margin-bottom: 0.6rem;
}

h4 {
  font-size: 0.9rem;
  line-height: 1.4rem;
  color: #666;
}

.overflow {
  overflow: hidden;
}

.over-text {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.line-height {
  line-height: 0;
}

.flex {
  display: flex;
}

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

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

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

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

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

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

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

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

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

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

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

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

/* css截取字符串 */
.clamp1 {
  word-break: break-all;
  display: -webkit-box !important;
  -webkit-line-clamp: 1 !important;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.clamp2 {
  word-break: break-all;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.clamp3 {
  word-break: break-all;
  display: -webkit-box !important;
  -webkit-line-clamp: 3 !important;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.clamp4 {
  word-break: break-all;
  display: -webkit-box !important;
  -webkit-line-clamp: 4 !important;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.clamp5 {
  word-break: break-all;
  display: -webkit-box !important;
  -webkit-line-clamp: 5 !important;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.clamp6 {
  word-break: break-all;
  display: -webkit-box !important;
  -webkit-line-clamp: 6 !important;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.clear:after {
  content: "";
  clear: both;
  display: block;
  height: 0;
  overflow: hidden;
  visibility: hidden;
}

.animated {
  visibility: hidden;
}

.img-box {
  position: relative;
  overflow: hidden;
}

.img-box::after {
  display: block;
  content: "";
  padding-top: 56.25%;
  position: relative;
  z-index: 1;
}

.img-box img {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 2;
  transition: all 0.4s ease-out;
}

.img-box.contain img {
  object-fit: contain;
}

.img-box.none img {
  object-fit: none;
}

a:hover .img-box img {
  transform: translate(-50%, -50%) scale(1.05);
}

.main {
  max-width: 1720px;
  margin: 0px auto;
}

.sub-banner-box {
  position: relative;
  overflow: hidden;
}
.sub-banner-box::after {
  display: block;
  content: "";
  padding-top: 27.6041666667%;
}
.sub-banner-box .sub-banner {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
}
.sub-banner-box .sub-banner .main {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 40px;
  height: 100%;
}
.sub-banner-box .sub-banner .main .sub-banner-cont {
  width: 50%;
}
.sub-banner-box .sub-banner .main .sub-banner-cont .name {
  font-size: 45px;
  color: #060912;
}
.sub-banner-box .sub-banner .main .sub-banner-cont .text {
  font-size: 16px;
  color: #060912;
  padding: 20px 0px 40px 0px;
  line-height: 30px;
}
.sub-banner-box .sub-banner .main .sub-banner-cont .sub-banner-bt-box {
  display: flex;
  margin: 0px -10px;
}
.sub-banner-box .sub-banner .main .sub-banner-cont .sub-banner-bt-box .sub-banner-bt {
  display: flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  padding: 0px 35px;
  margin: 0px 10px;
  height: 40px;
  border-radius: 40px;
  font-size: 18px;
  color: #fff;
  background: #2ba6de;
  position: relative;
  overflow: hidden;
}
.sub-banner-box .sub-banner .main .sub-banner-cont .sub-banner-bt-box .sub-banner-bt:last-child {
  background: #e73828;
}
.sub-banner-box .sub-banner .main .sub-banner-cont .sub-banner-bt-box .sub-banner-bt span {
  position: relative;
  z-index: 3;
}
.sub-banner-box .sub-banner .main .sub-banner-cont .sub-banner-bt-box .sub-banner-bt::before {
  display: block;
  content: "";
  width: 150px;
  height: 150px;
  border-radius: 100%;
  background: rgba(255, 255, 255, 0.3);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: all 0.4s ease-out;
  z-index: 1;
}
.sub-banner-box .sub-banner .main .sub-banner-cont .sub-banner-bt-box .sub-banner-bt:hover::before {
  transform: translate(-50%, -50%) scale(1);
}

.row {
  padding-top: 60px;
}

.row-title {
  background: url(../../../../../static/img/supplier/title-bg.jpg) no-repeat center center;
  background-size: cover;
  padding: 0px 25px;
  line-height: 60px;
  overflow: hidden;
}
.row-title span {
  font-size: 24px;
  color: #22282a;
}

.row1 .row-cont {
  display: flex;
}
.row1 .row-cont .row-left {
  width: 60%;
}
.row1 .row-cont .row-left .menu-box {
  display: flex;
  background: #f7f7f7;
  overflow: hidden;
}
.row1 .row-cont .row-left .menu-box .menu-first {
  overflow: hidden;
  width: 130px;
}
.row1 .row-cont .row-left .menu-box .menu-first .menu-dl {
  padding: 5px;
}
.row1 .row-cont .row-left .menu-box .menu-first .menu-dl dd a {
  line-height: 35px;
  padding: 0px 15px;
  display: block;
  font-size: 16px;
  color: #6e6e6e;
  overflow: hidden;
}
.row1 .row-cont .row-left .menu-box .menu-first .menu-dl dd.active a {
  background: #fff;
  color: #000;
}
.row1 .row-cont .row-left .menu-box .row1-swiper-box {
  flex: 1 0 0;
  overflow: hidden;
  margin: 5px;
}
.row1 .row-cont .row-left .menu-box .menu-cont {
  overflow: hidden;
  padding: 5px 15px;
  height: 367px;
  overflow-y: auto;
  background: #fff;
}
.row1 .row-cont .row-left .menu-box .menu-cont .menu-ul {
  display: flex;
  flex-direction: column;
}
.row1 .row-cont .row-left .menu-box .menu-cont .menu-ul li {
  display: flex;
  margin: 5px 0px;
}
.row1 .row-cont .row-left .menu-box .menu-cont .menu-ul li .menu-second {
  padding-right: 15px;
  margin-right: 15px;
  background: url(../../../../../static/img/supplier/arrow-right.png) no-repeat right 6px;
  background-size: auto 12px;
  width: 100px;
  line-height: 25px;
}
.row1 .row-cont .row-left .menu-box .menu-cont .menu-ul li .menu-second a {
  font-size: 16px;
  color: #0d0d0d;
  transition: all 0.4s ease-out;
}
.row1 .row-cont .row-left .menu-box .menu-cont .menu-ul li .menu-second a:hover {
  color: #2ba6de;
}
.row1 .row-cont .row-left .menu-box .menu-cont .menu-ul li .menu-third {
  flex: 1 0 0;
}
.row1 .row-cont .row-left .menu-box .menu-cont .menu-ul li .menu-third .menu-third-cont {
  display: flex;
  margin: 0px -10px;
  flex-wrap: wrap;
}
.row1 .row-cont .row-left .menu-box .menu-cont .menu-ul li .menu-third .menu-third-cont a {
  display: flex;
  font-size: 14px;
  color: #4c4c4c;
  margin: 0px 10px;
  line-height: 25px;
  transition: all 0.4s ease-out;
}
.row1 .row-cont .row-left .menu-box .menu-cont .menu-ul li .menu-third .menu-third-cont a:hover {
  color: #2ba6de;
}
.row1 .row-cont .row-right {
  flex: 1 0 0;
  margin-left: 60px;
  display: flex;
  flex-direction: column;
}
.row1 .row-cont .row-right .notice-dl {
  background: #f7f7f7;
  padding: 5px 25px;
  flex: 1 0 0;
}
.row1 .row-cont .row-right .notice-dl dd {
  display: flex;
  justify-content: space-between;
  line-height: 25px;
  padding: 10px 0px;
  border-bottom: 1px solid #dde0e1;
}
.row1 .row-cont .row-right .notice-dl dd:last-child {
  border-bottom: none;
}
.row1 .row-cont .row-right .notice-dl dd a {
  flex: 1 0 0;
  display: block;
  font-size: 16px;
  color: #22282a;
  transition: all 0.4s ease-out;
}
.row1 .row-cont .row-right .notice-dl dd a:hover {
  color: #2ba6de;
}
.row1 .row-cont .row-right .notice-dl dd span {
  font-size: 16px;
  color: #6c6c6c;
}


.row2 .main .row-cont {
  display: flex;
  margin: 0px -30px;
}
.row2 .main .row-cont .item {
  width: 50%;
}
.row2 .main .row-cont .item .item-cont {
  margin: 0px 30px;
}
.row2 .main .row-cont .item:first-child .item-cont{
    height: 100%;
    background: url(../../../static/img/supplier/download-bg.png) no-repeat center center;
    background-size: cover;
}
.row2 .main .row-cont .item .row2-swiper {
  width: 100%;
}
.row2 .main .row-cont .item .row2-swiper .swiper-slide .download-a {
  padding: 40px;
  display: flex;
  overflow: hidden;
  background: url(../../../../../static/img/supplier/download-bg.png) no-repeat center center;
  background-size: cover;
}
.row2 .main .row-cont .item .row2-swiper .swiper-slide .download-a .cont {
  width: 50%;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
}
.row2 .main .row-cont .item .row2-swiper .swiper-slide .download-a .cont .name {
  font-size: 30px;
  color: #21262a;
  font-weight: bold;
  margin-bottom: 40px;
  line-height: 50px;
}
.row2 .main .row-cont .item .row2-swiper .swiper-slide .download-a .cont .download-bt {
  display: flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  padding: 0px 35px;
  margin: 0px 10px;
  height: 40px;
  border-radius: 40px;
  font-size: 18px;
  color: #fff;
  background: #2ba6de;
  position: relative;
  overflow: hidden;
}
.row2 .main .row-cont .item .row2-swiper .swiper-slide .download-a .cont .download-bt span {
  position: relative;
  z-index: 3;
}
.row2 .main .row-cont .item .row2-swiper .swiper-slide .download-a .cont .download-bt::before {
  display: block;
  content: "";
  width: 150px;
  height: 150px;
  border-radius: 100%;
  background: rgba(255, 255, 255, 0.3);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: all 0.4s ease-out;
  z-index: 1;
}
.row2 .main .row-cont .item .row2-swiper .swiper-slide .download-a .cont .download-bt:hover::before {
  transform: translate(-50%, -50%) scale(1.05);
}
.row2 .main .row-cont .item .row2-swiper .swiper-slide .download-a .cont .img-box {
  width: 193px;
  margin-left: 60px;
}
.row2 .main .row-cont .item .row2-swiper .swiper-slide .download-a .cont .img-box::after {
  padding-top: 133.3333333333%;
}
.row2 .main .row-cont .item .report-box {
  padding: 30px;
  position: relative;
  background: #f7f7f7;
}
.row2 .main .row-cont .item .report-box::after {
  display: block;
  content: "";
  position: absolute;
  right: 0px;
  bottom: 0px;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: url(../../../../../static/img/supplier/report-img.png) no-repeat right bottom;
  background-size: 40% auto;
  opacity: 0.3;
}
.row2 .main .row-cont .item .report-box .report-cont {
  position: relative;
  z-index: 2;
}
.row2 .main .row-cont .item .report-box .name {
  font-size: 18px;
  color: #22282a;
  margin-bottom: 10px;
}
.row2 .main .row-cont .item .report-box .text {
  font-size: 16px;
  color: #22282a;
  line-height: 30px;
}
.row2 .main .row-cont .item .report-box .other {
  display: flex;
  padding-top: 25px;
  flex-wrap: wrap;
  position: relative;
  z-index: 3;
}
.row2 .main .row-cont .item .report-box .other .report-title {
  width: 100%;
  font-size: 16px;
  color: #22282a;
  overflow: hidden;
}
.row2 .main .row-cont .item .report-box .other .report-left {
  margin-right: 25px;
}
.row2 .main .row-cont .item .report-box .other .report-left .report-left-cont {
  display: flex;
}
.row2 .main .row-cont .item .report-box .other .report-left .report-left-cont .report-code {
  flex-shrink: 0;
}
.row2 .main .row-cont .item .report-box .other .report-left .report-left-cont .report-code .code-img {
  margin-bottom: 10px;
}
.row2 .main .row-cont .item .report-box .other .report-left .report-left-cont .report-code .code-img img {
  display: block;
  width: 100px;
  height: 100px;
}
.row2 .main .row-cont .item .report-box .other .report-left .report-left-cont .report-code .code-text {
  font-size: 16px;
  color: #5087a1;
  text-align: center;
}
.row2 .main .row-cont .item .report-box .other .report-bt {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.row2 .main .row-cont .item .report-box .other .report-bt a {
  display: flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  padding: 0px 35px;
  margin: 0px 10px;
  height: 40px;
  border-radius: 40px;
  font-size: 18px;
  color: #5087a1;
  position: relative;
  overflow: hidden;
  border: 1px solid #2ba6de;
  transition: all 0.4s ease-out;
}
.row2 .main .row-cont .item .report-box .other .report-bt a:hover {
  color: #fff;
  background: #2ba6de;
}
.row2 .main .row-cont .item .report-box .other .report-right {
  flex: 1 0 0;
  display: flex;
  flex-wrap: wrap;
}
.row2 .main .row-cont .item .report-box .other .report-right .report-phone {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  font-size: 16px;
  color: #22282a;
  line-height: 30px;
}
.row2 .main .row-cont .item .report-box .other .report-right .report-phone span {
  display: block;
}
.row3 .main .row-cont {
  display: flex;
  background: #e2f0f7;
  padding: 10px 25px;
  line-height: 25px;
}
.row3 .main .row-cont .name {
  font-size: 16px;
  color: #464646;
}
.row3 .main .row-cont .link-cont {
  flex: 1 0 0;
}
.row3 .main .row-cont .link-cont .link-dl {
  display: flex;
  flex-wrap: wrap;
  margin: 0px -10px;
}
.row3 .main .row-cont .link-cont .link-dl dd a {
  display: block;
  margin: 0px 10px;
  font-size: 16px;
  color: #5d5d5d;
  transition: all 0.4s linear;
}
.row3 .main .row-cont .link-cont .link-dl dd a:hover {
  color: #2ba6de;
}

@media screen and (max-width: 1720px) {
  
}
@media screen and (max-width: 1366px) {
    .sub-banner-box .sub-banner .main{
        padding-bottom: 25px;
    }
    .sub-banner-box .sub-banner .main .sub-banner-cont {
      width: 60%;
    }
    .sub-banner-box .sub-banner .main .sub-banner-cont .name {
      font-size: 30px;
    }
    .sub-banner-box .sub-banner .main .sub-banner-cont .text {
      font-size: 16px;
      padding: 20px 0px 20px 0px;
      line-height: 25px;
    } 
  .row2 .main .row-cont .item .report-box .other .report-left {
    display: flex;
    align-items: center;
  }
  .row2 .main .row-cont .item .report-box .other .report-left .report-left-cont .report-bt a {
    padding: 0px 20px;
  }
  .row2 .main .row-cont .item .report-box .other .report-right {
    flex-direction: column;
    padding-left: 0px;
  }
  .row2 .main .row-cont .item .report-box .other .report-right .report-phone {
    margin-bottom: 15px;
  }
  .row2 .main .row-cont .item .report-box .other .report-bt {
    justify-content: flex-start;
  }
}
@media screen and (max-width: 1024px) {
    .sub-banner-box::after{
        padding-top: 28.5%;
    }
  .row2 .main .row-cont .item .report-box .text {
    font-size: 15px;
    line-height: 22px;
  }
  .row2 .main .row-cont .item .report-box .other .report-left {
    margin-bottom: 15px;
  }
  .row2 .main .row-cont .item .report-box .other .report-phone {
    font-size: 15px;
    line-height: 25px;
    white-space: nowrap;
  }
  .row2 .main .row-cont .item .report-box .other .report-bt {
    flex: 1 0 0;
  }
  .row2 .main .row-cont .item .row2-swiper .swiper-slide .download-a .cont .name {
    font-size: 24px;
    line-height: 40px;
  }
}
@media screen and (max-width: 768px) {
    .main {
        padding: 0px 20px;
      }
  .row {
    padding-top: 30px;
  }
  .row-title {
    line-height: 45px;
    padding: 0px 15px;
  }
  .row-title span {
    font-size: 20px;
  }
  .sub-banner-box::after {
    padding-top: 80%;
  }
  .sub-banner-box .sub-banner .main{
      justify-content: flex-end;
      padding-bottom: 15px;
  }
  .sub-banner-box .sub-banner .main .sub-banner-cont {
    width: 100%;
  }
  .sub-banner-box .sub-banner .main .sub-banner-cont .name {
    font-size: 18px;
    text-align: left;
    text-indent: 1.5em;
  }
  .sub-banner-box .sub-banner .main .sub-banner-cont .text {
    font-size: 14px;
    line-height: 25px;
    padding: 15px 0px;
    text-align: left;
    text-indent: 2em;
  }
  .sub-banner-box .sub-banner .main .sub-banner-cont .sub-banner-bt-box {
    justify-content: center;
    text-align: center;
  }
  .row1 .row-cont {
    display: block;
  }
  .row1 .row-cont .row-left {
    width: 100%;
    margin-bottom: 30px;
  }
  .row1 .row-cont .row-left .menu-box {
    display: block;
  }
  .row1 .row-cont .row-left .menu-box .menu-first {
    width: 100%;
  }
  .row1 .row-cont .row-left .menu-box .menu-first .menu-dl {
    display: flex;
    flex-wrap: wrap;
  }
  .row1 .row-cont .row-left .menu-box .menu-first .menu-dl dd {
    width: 25%;
    text-align: center;
  }
  .row1 .row-cont .row-left .menu-box .menu-first .menu-dl dd a {
    padding: 0px;
  }
  .row1 .row-cont .row-left .menu-box .menu-cont {
    height: auto;
    overflow: hidden;
  }
  .row1 .row-cont .row-left .menu-box .menu-cont .menu-ul li {
    display: block;
  }
  .row1 .row-cont .row-left .menu-box .menu-cont .menu-ul li .menu-second {
    width: auto;
    margin-right: 0px;
    padding-right: 0px;
    background: none;
    margin-bottom: 7px;
    display: flex;
  }
  .row1 .row-cont .row-left .menu-box .menu-cont .menu-ul li .menu-second a {
    display: block;
    padding-bottom: 5px;
    position: relative;
    color: #2ba6de;
  }
  .row1 .row-cont .row-left .menu-box .menu-cont .menu-ul li .menu-second a::after {
    display: block;
    content: "";
    width: 100%;
    height: 2px;
    background: #2ba6de;
    position: absolute;
    left: 0px;
    bottom: 0px;
  }
  .row1 .row-cont .row-right {
    margin-left: 0px;
  }
  .row2 .main .row-cont {
    display: block;
  }
  .row2 .main .row-cont .item {
    width: 100%;
  }
  .row2 .main .row-cont .item:first-child{
      margin-bottom: 30px;
  }
  .row2 .main .row-cont .item .row2-swiper .swiper-slide .download-a {
    padding: 15px;
  }
  .row2 .main .row-cont .item .row2-swiper .swiper-slide .download-a .cont {
    width: auto;
  }
  .row2 .main .row-cont .item .row2-swiper .swiper-slide .download-a .cont .name {
    font-size: 16px;
    line-height: 25px;
    margin-bottom: 20px;
  }
  .row2 .main .row-cont .item .row2-swiper .swiper-slide .download-a .cont .img-box {
    width: 160px;
    margin-left: 15px;
  }
  .row2 .main .row-cont .item .report-box {
    padding: 15px;
    padding-bottom: 210px;
  }
  .row2 .main .row-cont .item .report-box::after {
    background-size: 70% auto;
    background-position: center bottom;
    opacity: 1;
  }
  .row2 .main .row-cont .item .report-box .name {
    text-align: center;
  }
  .row2 .main .row-cont .item .report-box .text {
    height: auto;
  }
  .row2 .main .row-cont .item .report-box .other {
    display: block;
  }
  .row2 .main .row-cont .item .report-box .other .report-title {
    text-align: center;
  }
  .row2 .main .row-cont .item .report-box .other .report-left {
    display: block;
    margin-bottom: 20px;
  }
  .row2 .main .row-cont .item .report-box .other .report-left .report-left-cont {
    display: block;
  }
  .row2 .main .row-cont .item .report-box .other .report-left .report-left-cont .report-code {
    margin-bottom: 15px;
  }
  .row2 .main .row-cont .item .report-box .other .report-code .code-img {
    display: flex;
    justify-content: center;
  }
  .row2 .main .row-cont .item .report-box .other .report-right {
    display: block;
  }
  .row2 .main .row-cont .item .report-box .other .report-right .report-phone {
    padding: 0px;
  }
  .row2 .main .row-cont .item .report-box .other .report-bt {
    justify-content: center;
  }
  .row3 .main .row-cont {
    display: block;
    padding: 15px;
  }
  .row3 .main .row-cont .name {
    margin-bottom: 10px;
  }
}