* {
  box-sizing: border-box;
}
/* 单行内容超出时出现省略号 */
.ell {
  /*  text-overflow: ellipsis;
  white-space: nowrap; 
  overflow: hidden; */
  display: -webkit-box !important;
  white-space: normal!important;
  text-overflow: ellipsis;
  word-wrap: break-word;
  overflow: hidden;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  word-break: break-all;
  line-height: 1.3;
  /*  如果是line-height:1的话，在ios上会漏出第二行文字的头 */
}
/* 文本超过2行换行 */
.ell2 {
  display: -webkit-box !important;
  white-space: normal!important;
  text-overflow: ellipsis;
  /*  允许长单词或数字换行到下一行（默认情况下，当该行是以英文或者数字结尾时，则不换行即会溢出文本）*/
  word-wrap: break-word;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  /*表示允许长单词或者数字 之间的换行。默认是不换行（即若一行只能容纳10个字符，文本是两个中文字加一串大于6字符
  的英文，则会被自动分成两行，第一行是2个中文字，第二行是长英文；若英文小于6字符则全部在第一行显示）比如“650/盒 3900/箱”,加上后 “3900”会被分割进行了换行 */
  word-break: break-all;
}
body {
  font-size: 14px;
  font-family: Helvetica Neue, Helvetica, PingFang SC, Hiragino Sans GB, Microsoft YaHei, Arial, sans-serif !important;
  color: #333;
  line-height: 1.5;
  word-wrap: break-word;
  /* 默认为normal */
  word-break: break-all;
  /* 默认为normal */
}
a {
  color: #333;
  font-size: 14px;
  display: inline-block;
}
a:hover {
  color: #fdc59e;
}
.center {
  display: flex;
  justify-content: center;
  align-items: center;
}
/* .top, .top .container {
  background-color: #f7f7f7;
} */
main {
  font-size: 14px;
  /* background-color: #f7f7f7;
  padding:30px 0 20px; */
  color: #333;
}
/* main .container{
  background-color: #f7f7f7;
} */
.navigator {
  display: flex;
  padding: 10px 0 15px;
}
.distributor_01 {
  background: url("../images/about20.png") no-repeat 0 0 / cover;
  height: 30vh;
  background-color: #eee;
  color: #fff;
  padding: 20px 0;
  display: flex;
  align-items: center;
  font-size: 20px;
}
.distributor_01 .container {
  width: auto;
}
.distributor_02 {
  margin-top: 30px;
}
.distributor_02 h2 {
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}
.distributor_02 .list {
  display: flex;
  flex-wrap: wrap;
}
.distributor_02 .list .item {
  width: calc((100% - 20px) / 3);
  margin-right: 10px;
  margin-bottom: 15px;
}
.distributor_02 .list .item:nth-child(3n) {
  margin-right: 0;
}
.distributor_02 .list .item .img-wrap {
  overflow: hidden;
}
.distributor_02 .list .item .img-wrap:hover .img {
  transform: scale(1.1);
}
.distributor_02 .list .item .img-wrap .img {
  width: 100%;
  height: 300px;
  display: block;
  object-fit: cover;
  transition: 0.5s ease;
}
.distributor_02 .list .item .name {
  margin-top: 10px;
}
.distributor_03 {
  margin-top: 30px;
  margin-bottom: 30px;
}
.distributor_03 h2 {
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}
.distributor_03 .list {
  display: flex;
}
.distributor_03 .list .item {
  margin-bottom: 15px;
  cursor: pointer;
}
.distributor_03 .list .item .img-wrap {
  overflow: hidden;
}
.distributor_03 .list .item .img-wrap:hover .img {
  transform: scale(1.1);
}
.distributor_03 .list .item .img-wrap .img {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: 0.5s ease;
}
.distributor_03 .list .item .name {
  margin-top: 10px;
}
.becomeDistributor_01 {
  background: url("../images/distributor10.png") no-repeat 0 0 / cover;
  height: 25vh;
  background-color: #242334;
}
.becomeDistributor_02 {
  position: absolute;
  width: 100%;
}
.becomeDistributor_02 h2 {
  font-size: 22px;
  color: #fdc596;
  text-align: center;
  font-weight: bold;
  margin-bottom: 20px;
}
.becomeDistributor_02 {
  transform: translateY(-120px);
}
.becomeDistributor_02 .box {
  background-color: #fff;
  box-shadow: 0px 1px 40px 0px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding-bottom: 20px;
}
.becomeDistributor_02 .box .tab .list {
  display: flex;
}
.becomeDistributor_02 .box .tab .list .item {
  flex: 1;
  height: 40px;
}
.becomeDistributor_02 .box .tab .list .item:first-child.active {
  background: url("../images/distributor11.png") no-repeat right bottom / cover;
  color: #242334;
  border-top-left-radius: 12px;
}
.becomeDistributor_02 .box .tab .list .item:last-child.active {
  background: url("../images/distributor12.png") no-repeat left bottom / cover;
  color: #242334;
  border-top-right-radius: 12px;
}
.becomeDistributor_02 .box .content1 {
  padding: 20px 10px 0;
  display: none;
}
.becomeDistributor_02 .box .content1.active {
  display: block;
}
.becomeDistributor_02 .box .content1 .list {
  display: flex;
  flex-wrap: wrap;
}
.becomeDistributor_02 .box .content1 .list .item {
  color: #242334;
  text-align: center;
  background-color: #fafafa;
  margin-right: 10px;
  margin-bottom: 10px;
  width: calc((100% - 10px) / 2);
  position: relative;
  border: 2px solid #e5e5e5;
}
.becomeDistributor_02 .box .content1 .list .item.active {
  border: none;
}
.becomeDistributor_02 .box .content1 .list .item.active .price_wrap {
  color: #ffd0a9;
  border-bottom: 1px solid #ffd0a9;
}
.becomeDistributor_02 .box .content1 .list .item.active .advantage_list .advantage_item {
  color: #ad8f79;
}
.becomeDistributor_02 .box .content1 .list .item.active .wrap {
  background: linear-gradient(118deg, #41393c 0%, #1f1e21 100%);
}
.becomeDistributor_02 .box .content1 .list .item.active .bottom,
.becomeDistributor_02 .box .content1 .list .item.active .checked_img {
  display: flex;
}
.becomeDistributor_02 .box .content1 .list .item .wrap {
  padding: 15px 10px;
}
.becomeDistributor_02 .box .content1 .list .item:nth-child(2n) {
  margin-right: 0;
}
.becomeDistributor_02 .box .content1 .list .item.active {
  color: #ffd0a9;
}
.becomeDistributor_02 .box .content1 .list .item .name {
  font-weight: bold;
  font-size: 16px;
}
.becomeDistributor_02 .box .content1 .list .item .price_wrap {
  color: #333;
  font-weight: bold;
  margin-top: 5px;
  padding-bottom: 5px;
}
.becomeDistributor_02 .box .content1 .list .item .price_wrap .value {
  font-size: 22px;
}
.becomeDistributor_02 .box .content1 .list .item .advantage_list {
  padding-top: 10px;
}
.becomeDistributor_02 .box .content1 .list .item .advantage_list .advantage_item {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #999;
  font-weight: bold;
  font-size: 13px;
  margin-bottom: 5px;
}
.becomeDistributor_02 .box .content1 .list .item .advantage_list .advantage_item .iconfont {
  font-size: 13px;
  margin-right: 4px;
}
.becomeDistributor_02 .box .content1 .list .item .bottom {
  height: 30px;
  background-color: #ffe9d7;
  color: #64554c;
  display: none;
}
.becomeDistributor_02 .box .content1 .list .item .checked_img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 30px;
  display: none;
}
.becomeDistributor_02 .box .content1 .total {
  margin: 10px 0 20px;
  color: #999;
  font-weight: bold;
  text-align: center;
}
.becomeDistributor_02 .box .content1 .total .value-wrap {
  color: #333;
}
.becomeDistributor_02 .box .content1 .total .value {
  font-size: 22px;
}
.becomeDistributor_02 .box .content1 .payWays {
  display: flex;
  justify-content: center;
  align-items: center;
}
.becomeDistributor_02 .box .content1 .payWays .item {
  margin-right: 20px;
}
.becomeDistributor_02 .box .content1 .payWays .item:last-child {
  margin-right: 0;
}

.becomeDistributor_02 .box .content1 .payWays .item button{
    background-color: #fafafa;
    border: 1px solid #e5e5e5;
    padding: 10px 25px;
    font-size: 18px;
    display: flex;
    align-items: center;
}

.becomeDistributor_02 .box .content1 .payWays .item.alipay .iconfont{
    font-size: 25px;
    margin-right: 10px;
}

.becomeDistributor_02 .box .content1 .payWays .item.wechat .img-wrap {
  border-radius: 12px;
  border: 2px solid #09bb07;
}
.becomeDistributor_02 .box .content1 .payWays .item.wechat .iconfont {
  color: #1cbb20;
}
.becomeDistributor_02 .box .content1 .payWays .item.alipay .img-wrap {
  border-radius: 12px;
  border: 2px solid #06b4fd;
}
.becomeDistributor_02 .box .content1 .payWays .item.alipay .iconfont {
  color: #1fb4fc;
}
.becomeDistributor_02 .box .content1 .payWays .item .img-wrap {
  padding: 5px 5px;
}
.becomeDistributor_02 .box .content1 .payWays .item .img-wrap img {
  width: 100px;
  height: 100px;
}
.becomeDistributor_02 .box .content1 .payWays .item .name {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}
.becomeDistributor_02 .box .content1 .payWays .item .name .iconfont {
  margin-right: 6px;
  font-size: 20px;
}
.becomeDistributor_02 .box .content2 {
  display: none;
}
.becomeDistributor_02 .box .content2.active {
  display: block;
}
.becomeDistributor_02 .box .content2 .title {
  text-align: center;
  font-size: 18px;
  margin: 20px 0 5px;
}
.becomeDistributor_02 .box .content2 .subtit {
  font-size: 16px;
  color: #666;
  text-align: center;
}
.becomeDistributor_02 .box .content2 .form {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 30px;
  margin-top: 15px;
}
.becomeDistributor_02 .box .content2 .form .form_item {
  width: 100%;
  margin-bottom: 15px;
}
.becomeDistributor_02 .box .content2 .form .form_item .label {
  margin-bottom: 5px;
}
.becomeDistributor_02 .box .content2 .form .form_item .input-wrap input {
  width: 100%;
  display: block;
  height: 35px;
  padding: 0 10px;
  border: 1px solid #666;
  outline: none;
}
.becomeDistributor_02 .box .content2 .form .form_item .input-wrap .select-box {
  display: flex;
}
.becomeDistributor_02 .box .content2 .form .form_item .input-wrap .select-box .select {
  outline: none;
  border: 1px solid #666;
  width: 80px;
  flex: 1;
  height: 35px;
  font-size: 14px;
  margin-right: 5px;
  cursor: pointer;
  /* 隐藏默认的下拉箭头 */
  appearance: none;
  /*在选择框的最右侧中间显示小箭头图片（*如果select加边框箭头靠右的话，可以将小箭头图片右侧做一点空白宽度占位）*/
  background: url("../assets/selectAddress/arrow.png") no-repeat right center transparent;
  padding: 0 5px;
}
.becomeDistributor_02 .box .content2 .form .form_item .input-wrap .select-box .select:last-child {
  margin-right: 0;
}
.becomeDistributor_02 .box .content2 .form .form_item .input-wrap textarea {
  width: 100%;
  display: block;
  outline: none;
  border: 1px solid #666;
  padding: 10px 10px;
  height: 80px;
  resize: none;
}
.becomeDistributor_02 .box .content2 .form .form_item .submit {
  color: #fff;
  background-color: #000;
  width: 140px;
  height: 35px;
  outline: none;
  border: none;
  margin: 10px auto 0;
}
@media (min-width: 1000px) {
  .distributor_01 {
    height: 874px;
    font-size: 46px;
  }
  .distributor_01 h2 {
    font-size: 40px;
    margin: 50px 0 0;
  }
  .distributor_02 {
    margin-top: 90px;
  }
  .distributor_02 h2 {
    font-size: 40px;
    margin-bottom: 80px;
  }
  .distributor_02 .list .item {
    width: calc((100% - 116px) / 3);
    margin-right: 58px;
    margin-bottom: 50px;
  }
  .distributor_02 .list .item .name {
    margin-top: 30px;
    font-size: 20px;
  }
  .distributor_03 {
    margin-top: 90px;
    margin-bottom: 50px;
  }
  .distributor_03 h2 {
    font-size: 40px;
    margin-bottom: 80px;
  }
  .distributor_03 .list .item {
    margin-bottom: 50px;
  }
  .distributor_03 .list .item .name {
    margin-top: 30px;
    font-size: 20px;
  }
  .becomeDistributor_01 {
    height: 740px;
  }
  .becomeDistributor_02 h2 {
    font-size: 50px;
    margin-bottom: 65px;
  }
  .becomeDistributor_02 {
    transform: translateY(-600px);
  }
  .becomeDistributor_02 .box {
    padding-bottom: 80px;
  }
  .becomeDistributor_02 .box .tab .list .item {
    height: 80px;
    font-size: 26px;
  }
  .becomeDistributor_02 .box .content1 {
    padding: 120px 77px 0;
  }
  .becomeDistributor_02 .box .content1 .list .item {
    margin-right: 70px;
    margin-bottom: 110px;
    width: calc((100% - 140px) / 3);
  }
  .becomeDistributor_02 .box .content1 .list .item:nth-child(2n) {
    margin-right: 70px;
  }
  .becomeDistributor_02 .box .content1 .list .item:nth-child(3n) {
    margin-right: 0;
  }
  .becomeDistributor_02 .box .content1 .list .item .wrap {
    padding: 40px 20px;
  }
  .becomeDistributor_02 .box .content1 .list .item .name {
    font-size: 23px;
  }
  .becomeDistributor_02 .box .content1 .list .item .price_wrap {
    margin: 0 0;
    font-size: 23px;
  }
  .becomeDistributor_02 .box .content1 .list .item .price_wrap .value {
    font-size: 53px;
  }
  .becomeDistributor_02 .box .content1 .list .item .advantage_list {
    padding-top: 20px;
  }
  .becomeDistributor_02 .box .content1 .list .item .advantage_list .advantage_item {
    font-size: 17px;
    margin-bottom: 10px;
  }
  .becomeDistributor_02 .box .content1 .list .item .advantage_list .advantage_item .iconfont {
    font-size: 17px;
    margin-right: 8px;
  }
  .becomeDistributor_02 .box .content1 .list .item .bottom {
    height: 44px;
    font-size: 17px;
  }
  .becomeDistributor_02 .box .content1 .list .item .checked_img {
    width: 50px;
  }
  .becomeDistributor_02 .box .content1 .total {
    margin: 0 0 80px;
    font-size: 20px;
  }
  .becomeDistributor_02 .box .content1 .total .value {
    font-size: 40px;
  }
  .becomeDistributor_02 .box .content1 .payWays .item {
    margin-right: 310px;
  }
  .becomeDistributor_02 .box .content1 .payWays .item .img-wrap {
    padding: 10px 10px;
  }
  .becomeDistributor_02 .box .content1 .payWays .item .img-wrap img {
    width: 200px;
    height: 200px;
  }
  .becomeDistributor_02 .box .content1 .payWays .item .name {
    margin-top: 25px;
    font-size: 18px;
  }
  .becomeDistributor_02 .box .content1 .payWays .item .name .iconfont {
    margin-right: 10px;
    font-size: 30px;
  }
  .becomeDistributor_02 .box .content2 .title {
    font-size: 32px;
    margin: 70px 0 10px;
  }
  .becomeDistributor_02 .box .content2 .subtit {
    font-size: 22px;
  }
  .becomeDistributor_02 .box .content2 .form {
    padding: 0 280px;
    margin-top: 50px;
  }
  .becomeDistributor_02 .box .content2 .form .form_item {
    margin-bottom: 50px;
  }
  .becomeDistributor_02 .box .content2 .form .form_item .label {
    margin-bottom: 10px;
    font-size: 22px;
  }
  .becomeDistributor_02 .box .content2 .form .form_item .input-wrap input {
    height: 45px;
    padding: 0 10px;
    font-size: 16px;
  }
  .becomeDistributor_02 .box .content2 .form .form_item .input-wrap .select-box .select {
    height: 45px;
    font-size: 16px;
    margin-right: 10px;
    padding: 0 10px;
  }
  .becomeDistributor_02 .box .content2 .form .form_item .input-wrap textarea {
    padding: 10px 10px;
    height: 140px;
    font-size: 16px;
  }
  .becomeDistributor_02 .box .content2 .form .form_item .submit {
    width: 250px;
    height: 45px;
    margin: 0 auto 0;
    font-size: 18px;
  }
}
