

* {
  padding: 0px;
  margin: 0px;
  /* font-weight: 300; */
  /*-webkit-touch-callout:none;  /!*系统默认菜单被禁用*!/*/
  /*-webkit-user-select:none; /!*webkit浏览器*!/*/
  /*-moz-user-select:none;/!*火狐*!/*/
  /*-ms-user-select:none; /!*IE10*!/*/
  /*user-select:none;*/
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

input,
textarea {
  -webkit-user-select: auto;
  /*webkit浏览器*/
  margin: 0px;
  padding: 0px;
  border: none;
  outline: none;
  /* -webkit-appearance: none; */
  resize: none;
  font-size: 14px;
}
input[type='checkbox']{
  width: 20px;
  height: 20px;
  background-color: #fff;
  -webkit-appearance:none;
  border: 1px solid #c9c9c9;
  border-radius: 2px;
  outline: none;
}
input[type=checkbox]:checked{
  background: url("../image/check_box.png") no-repeat center;
  background-size: 100% 100%;
  border: none;
}
button {
  border: none;
  outline: none;
  cursor: pointer;
  font-family: iconfont;
}

ul,
ol,
li {
  list-style: none;
}

em,
i {
  font-style: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

img {
  vertical-align: middle;
  border: none;
  width: 100%;
  display: block;
}

a {
  text-decoration: none;
  cursor: pointer;
  color: #333;
}
a:hover{opacity: 0.8;}

html {
  height: 100%;
}

body {
  font-family:  "微软雅黑","微软雅黑","Microsoft YaHei",Helvetica,Tahoma,sans-serif, iconfont;
  /* font-size: 0.24rem; */
  font-size: 14px;
  color: #333;
  /* width: 100vw; */
  min-width: 1200px;
  /*overflow-x: hidden;*/
  -webkit-overflow-scrolling: touch;
}
.editor img{max-width:100%;width: initial;display: inline-block;}
.container,
.all {
  height: 100%;
  background: #f5f5f5;
  padding: 1px 0;
}
.mainContainer{
  width: 1200px;
  margin: 0 auto;
}
.all.hasTab{
  padding-bottom: 1rem;
}
.all.sign{
  min-height: 100vh;
  background: #ffffff;
}
/*::-webkit-scrollbar {
  display: none
}*/
.overflow{
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.flex{
  display: flex;
  flex-direction: row;
  align-items: center;
}
.flex_auto{
  flex: 1;
}
.flex_row{
  flex-direction: row;
}
.flex_column {
  display: flex;
  flex-direction: column!important;
  align-items: center;
}
.flex_wrap{
  flex-wrap: wrap;
}
.flex_align_center{
  align-items: center;
}
.flex_align_start {
  align-items: flex-start;
}
.flex_align_end {
  align-items: flex-end;
}
.flex_justify_center {
  justify-content: center;
}
.flex_justify_between {
  justify-content: space-between;
}
.flex_justify_around {
  justify-content: space-around;
}
.flex_justify_end{
  justify-content: flex-end;
}

.mask {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 666;
  display: none;
}

.nohave {
  width: 100%;
  margin-top: 50px;
  line-height: 30px;
  text-align: center;
  margin-bottom: 10px;
  color: #999;
  font-size: 16px;
     cursor:pointer;
}
.more {
  line-height: 0.8rem;
  text-align: center;
  margin-bottom: 0.2rem;
  color: #b7b7b7;
  font-size: 0.28rem;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 6px;
  border-radius: 3px;
}
.swiper-pagination-bullet-active {
  width: 20px;
  background: #1386c9;
}
.swiper-button-next, .swiper-button-prev {
  position: absolute;
  top: 50%;
  width: 40px;
  height: 40px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-size: 16px 26px;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #eee;
  border-radius: 50%;
}

.g-red{
  color: #E83440;
}
.g-green{
  color: #3B9A46;
}
.g-blue{
  color: #0030FD;
}
.g-gray{
  color: #C2C2C2;
}

.g-button{
  border: 1px solid #448ACA;
  background: #448ACA;
  color: #fff;
}
.g-button_success{
  border: 1px solid #3B9A45;
  background: #3B9A45;
  color: #fff;
}
.g-button_warnning{
  border: 1px solid #F8A404;
  background: #F8A404;
  color: #fff;
}
.g-button_fail{
  border: 1px solid #DB2122;
  background: #DB2122;
  color: #fff;
}
.g-button_cancel{
  border: 1px solid #A0A0A0;
  background: #fff;;
  color: #333;
}

.g-tool{
  width: 100%;
  background: #F7F7F7;
  position: relative;
  z-index: 64;
  user-select: none;
  margin-bottom: 20px;
}
.g-tool_info{
  height: 36px;
  color: #4D4D4D;
}
.g-tool_info>section{
  height: 100%;
}
.g-tool_info i{
  display: inline-flex;
  width: 2px;
  height: 13px;
  background: #4D4D4D;
}
.g-tool_info a,
.g-tool_info>section>div{
  height: 100%;
  line-height: 36px;
  color: #4D4D4D;
  padding: 0 16px;
  position: relative;
  cursor: pointer;
}
.g-tool_info .green{
  color: #3B9A45
}
.g-tool_info .big{
  font-size: 20px;
}
.cityList{
  position: absolute;
  top: 100%;
  left: 0;
  width: 440px;
  box-sizing: border-box;
  padding: 10px 10px 1px;
  background: #fff;
  border:1px solid rgba(238,238,238,1);
  display: none;
}
.cityList li{
  line-height: 22px;
  padding: 0 10px;
  font-size: 12px;
  margin-left: 10px;
  margin-bottom: 10px;
  cursor: pointer;
}
.cityList li.active{
  background: #3B9A45;
  color: #fff;
}

.g-tool_info .g-codeContainer{
  width: 130px;
  background: #fff;
  text-align: center;
  box-sizing: border-box;
  padding: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  border-radius: 5px;
  display: none;
  position: absolute;
  top: calc(100% + 2px);
  left: 50%;
  transform: translateX(-50%);
}
.g-tool_info>section>div:hover div{
  display: block;
}
.g-tool_info .g-codeContainer::before{
  display: block;
  content:'';
  width: 0;
  height: 0;
  border-width: 10px;
  border-style: solid;
  border-color: #fff #fff transparent transparent;
  box-shadow: 5px -5px 8px rgba(0,0,0,0.05);
  position: absolute;
  top: -15px;
  left: 50%;
  transform: rotate(-45deg) translateX(-50%);
}
.g-tool_info .g-codeContainer img{
  width: 110px;
  height: 110px;
}
.g-tool_info .g-codeContainer.g-kefu img{
  width: 18px;
  height: auto;
  margin-right: 10px;
}
.g-tool_info .g-codeContainer.g-kefu a{
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 10px;
}


.g-head .searchContainer{
  box-sizing: border-box;
  padding: 20px 0;
}
.g-head .logoImg{
  width: 340px;
  /* height: 99px; */
}

.g-head .search_content{
  /* width: 615px; */
  margin-top: 10px;
}
.g-head .search_content form input{
  width: 450px;
  height: 40px;
  border: 1px solid #D2D2D2;
  box-sizing: border-box;
  padding: 0 10px;
  font-size: 14px;
}
.g-head .search_content form button{
  width: 100px;
  line-height: 40px;
  background: #3B9A45;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}
.g-head .search_content ul a{
  margin-top: 10px;
  color: #333333;
  margin-left: 10px;
  max-width: 100rpx;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.g-head .cart{
  /* width: 160px; */
  padding: 0 10px;
  height: 40px;
  color: #333;
  border: 1px solid #E5E5E5;
  margin-top: 10px;
  cursor: pointer;
}
.g-head .cart img{
  width: 25px;
  height: 25px;
  margin-right: 10px;
}
.g-head .cart em{
  /* width:30px; */
  padding: 0 6px;
  line-height: 18px;
  text-align: center;
  font-size: 12px;
  color: #fff;
  background: #DB2122;
  border-radius: 50px;
  margin-left: 5px;
}
.headNav{
  height: 40px;
  margin-top: 20px;
  /* border-bottom: 2px solid #3B9A45;*/
  user-select: none;
}
.headNav a{
  width: 120px;
  line-height: 40px;
  text-align: center;
  font-size: 16px;
  color: #1a1a1a;
  position: relative;
  box-shadow: 0 6px 5px rgba(0,0,0,0.05);
}
.headNav a i{
  display: block;
  width: 30px;
  line-height: 16px;
  text-align: center;
  font-size: 10px;
  color: #fff;
  background: #3B9A45;
  border-radius: 7px 7px 7px 0;
  position: absolute;
  right: -3px;
  top: 0;
}
.headNav a:hover{
  color: #DB2122;
}
.headNav a.active{
  color: #3B9A45;
}
.headNav a:first-child{
  width: 200px;
  background: #3B9A45;
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  box-sizing: border-box;
  padding: 0 20px;
  text-align: left;
}
.headNav a:first-child em{
  width: 30px;
  flex-shrink: 0;
}


/* 底部 */
.g-footer{
  width: 100%;
}
.g-footer_head{
  width: 100%;
  height: 100px;
  background: #3B9A45;
}
.g-footer_head ul{
  height: 100%;;
}
.g-footer_head li{
  height: 100%;
  font-size: 20px;
  color: #fff;
  font-weight: bold;
  display: flex;
  flex-direction: row;
  align-items: center
}
.g-footer_head ul em{
  display: block;
  width: 38px;
  line-height: 38px;
  text-align: center;
  border: 1px solid #fff;
  border-radius: 10px 0;
  margin-right: 20px;
}
.g-footer_head ul i{
  width: 1px;
  height: 42px;
  background: #fff;
  transform: rotate(30deg);
}
.g-footer_list{
  padding: 40px 0;
  border-bottom: 1px solid #eee;
}
.g-footer_list a{
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 16px;
  color: #333;
}
.g-footer_list a img{
  width: 56px;
  height: 56px;
  margin-bottom: 10px;
}
.g-footer_list i{
  width: 1px;
  height: 42px;
  background: #3B9A45;
  transform: rotate(30deg);
  margin: 0 40px;
}
.g-footer_content{
  padding: 40px 0;
}
.g-footer_content ul a{
  font-size: 14px;
  color: #666;
  padding: 0 20px;
  border-right: 1px solid #999;
  margin-bottom: 20px;
}
.g-footer_content ul a:last-child{
  border-right: none;
}
.g-footer_content p{
  color: #666;
  font-size: 12px;
}
.g-footer_content div img{
  width: auto;
  height: 40px;
  margin-top: 20px;
}

/* 侧栏 */
.g-slide{
  position: fixed;
  bottom: 100px;
  left: calc(50% + 620px);
  width: 60px;
  background: #fff;
  box-sizing: border-box;
  padding: 0 12px;
  z-index: 60;
}
.g-slide .g-slide_item{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #757575;
  font-size: 14px;
  padding: 16px 0;
  text-align: center;
  border-bottom: 1px solid #eee;
  position: relative;
}
.g-slide .g-slide_item:last-child{
  border-bottom: none;
}
.g-slide .g-slide_item em{
  font-size: 26px;
  margin-bottom: 5px;
}
.g-slide .g-slide_item span{
  /* width: 36px; */
}
.g-slide .g-slide_item>i{
  position: absolute;
  top: 8px;
  right: -10px;
  padding: 0 6px;  
  line-height: 18px;
  text-align: center;
  font-size: 12px;
  color: #fff;
  background: #DB2122;
  border-radius: 50px;
  margin-left: 5px;
}
.g-slide .g-slide_item.cart span{
  width: 50px;
}
.g-slide .g-slide_item>div{
  background: #fff;
  text-align: center;
  box-sizing: border-box;
  padding: 0px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  border-radius: 5px;
  display: none;
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
}
.g-slide .g-slide_item:hover>div{
  display: flex;
}
.g-slide .g-slide_item>div::before{
  display: block;
  content:'';
  width: 0;
  height: 0;
  border-width: 10px;
  border-style: solid;
  border-color: #fff #fff transparent transparent;
  box-shadow: 5px -5px 8px rgba(0,0,0,0.05);
  position: absolute;
  top: 50%;
  right: -2px;
  transform: rotate(45deg) translateY(-50%);
}
.g-slide .g-slide_item>div.g-ggh_kufu{
  padding: 10px 0px 0;
}
.g-slide .g-slide_item>div.g-ggh_kufu img{
  width: 110px;
  height: 110px;
  padding: 10px 20px;
}

.g-slide .g-slide_item>div.g-qq_kefu{
  padding: 20px;
}
.g-slide .g-slide_item>div.g-qq_kefu a{
  color: #757575;
}
.g-slide .g-slide_item>div.g-qq_kefu img{
  width: 28px;
  /* height: 32px; */
  margin-bottom: 10px;
  padding: 0 20px;
}
.g-slide .g-slide_item>div div{
  width: 100%;
  line-height: 34px;
  text-align: center;
  color: #757575;
  background: #E4EAF7;
  margin-top: 10px;
}

/* 面包屑 */
.breadCrumbs{
  font-size: 14px;
  color: #333333;
}
.breadCrumbs a{
  color: #333333;
}
.breadCrumbs a:hover{
  color: #3B9A46;
}
@media all and (max-width: 1400px){
  .g-slide{
    left: calc(50% + 520px);
  }
}

/* 弹窗 */
.g-dialog{
  position: fixed;
  top: 40%;
  left: 50%;
  min-width: 360px;
  transform: translate(-50%,-50%);
  z-index: 999;
  background: #fff;
}
.g_close_img{
  position: absolute;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  right: 0;
  top: 0;
  color: #C2C2C2;
  cursor: pointer;
}
.g-dialog_title{
  height: 40px;
  line-height: 40px;
  box-sizing: border-box;
  padding: 0 20px;
  font-size: 16px;
  color: #333;
  font-weight: bold;
  background: #F7F7F7;
  border-bottom: 1px solid #E5E5E5;
}
.g-dialog_container{
  box-sizing: border-box;
  padding: 40px;
}
.g-btn_area{
  width: 100%;
  margin-top: 30px;
}
.g-btn_area button{
  flex:1;
  line-height: 40px;
  text-align: center;
  border-radius: 3px;
  font-size: 16px;
  margin-right: 30px;
}
.g-btn_area button:last-child{
  margin-right: 0px;
}


/* 上传文件弹窗 */
.g-dialog_small{
  width: 400px;
  top: 14%;
  left: 0;
  margin-left: calc(50% - 200px);
  transform: translate(0,0);
  display: none;
}
.g-dialog_middle{
  width: 710px;
  top: 14%;
  left: 0;
  margin-left: calc(50% - 355px);
  transform: translate(0,0);
  display: none;
}
.g-dialog_large{
  width: 840px;
  top: 14%;
  left: 0;
  margin-left: calc(50% - 410px);
  transform: translate(0,0);
  display: none;
}
.file_support{
  font-size: 14px;
  color: #1a1a1a;
  white-space: nowrap;
  margin-bottom: 20px;
}
.file_support div{
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-right: 30px;
}
.file_support img{
  width: 48px;
  height: 48px;
  margin-right: 10px;
}
.file_text{
  width: 100%;
  font-size: 14px;
  line-height: 2;
  margin-bottom: 20px;
}
.file_choose{
  width: 510px;
  border: 1px solid #EEEEEE;
  margin-bottom: 30px;
  position: relative;
  font-size: 16px;
  color: #1a1a1a;
  box-sizing: border-box;
  padding: 30px;
}
.file_choose button{
  width: 180px;
  line-height: 40px;
  text-align: center;
  background: #3B9A45;
  color: #fff;
  font-size: 16px;
  margin-bottom: 10px;
  position: relative;
}
.file_choose em{
  color: #3B9A45;
}
.file_choose input{
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 10;
  width: 100%;
  opacity: 0;
}
.file_notes{
  width: 510px;
}
.file_notes div{
  font-size: 16px;
  color: #1a1a1a;
  font-weight: bold;
  margin-bottom: 10px;
}
.file_notes textarea{
  width: 100%;
  height: 120px;
  background: #F7F7F7;
  box-sizing: border-box;
  padding: 10px;
  font-size: 14px;
}
#buyer_dialog .g-btn_area button,
#spec_dialog .g-btn_area button{
  max-width: 140px;
}

/* 登录 */
.sign_title{
  font-size: 24px;
  color: #333;
  position: relative;
}
.sign_title img{
  width: 260px;
  height: 75px;
}
.sign_title h2{
  font-size: 30px;
  color: #DB2122;
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  text-align: center;
}
.signIn_nav{
  width: 100%;
  font-size: 18px;
  color: #A8A8A8;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #3B9A46;
  cursor: pointer;
  user-select: none;
}
.signIn_nav div.active{
  color: #3B9A46;
  font-weight: bold;
}
.form_tab{
  width: 100%;
}
.form_tab>div:nth-child(n+2){
  display: none;
}
.form_section{
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 20px;
}
.form_section_title{
  width: 100px;
  text-align: right;
}
.form_section_title span{
  position: relative;
}
.form_section_title.must span::before{
  position: absolute;
  left: -10px;
  top: 0px;
  display: block;
  content: "*";
  font-size: 18px;
  color: #DB2122;
}
.form_section .form_section_input{
  flex: 1;
  max-width: 320px;
  height: 40px;
  border: 1px solid #AAAAAA;
  box-sizing: border-box;
  padding: 0 10px;
  font-size: 14px;
  border-radius: 3px;
}
.form_section input[type=checkbox]{
  margin-right: 10px;
}
.form_section .getCode{
  width: 110px;
  line-height: 34px;
  text-align: center;
  color: #fff;
  background: #3B9A46;
  border-radius: 50px;
  margin-left: 20px;
  flex-shrink: 0;
  cursor: pointer;
  user-select: none;
}
.form_section img{
  width: 110px;
  height: 40px;
  margin-left: 20px;
}
.form_section .form_section_textarea{
  flex: 1;
  max-width: 100%;
  height: 40px;
  border: 1px solid #AAAAAA;
  box-sizing: border-box;
  padding: 0 10px;
  font-size: 14px;
  border-radius: 3px;
}
.form_section .form_section_select{
  width: 140px;
  height: 40px;
  border: 1px solid #AAAAAA;
  box-sizing: border-box;
  padding: 0 10px;
  font-size: 14px;
  border-radius: 3px;
  margin-right: 20px;
  text-align: center;
  text-align-last: center;
  background: none;
  -webkit-appearance: none;
}
.form_section .select2-container{
  flex: 1;  
}
.form_section .g-choose{
  width: 150px;
}
.signIn_btm{
  margin-top: 20px;
  font-size: 14px;
  color: #C2C2C2;
}
.signIn_btm input{
  margin-right: 10px;
}
.signIn_btm span{
  margin-left: 10px;
  cursor: pointer;
}
/* 签到 */
.signsign_text{
  width: 100%;
}
.signsign_text i{
  flex: 1;
  height: 1px;
  background: #DCDCDC;
}
.signsign_text span{
  font-size: 16px;
  color: #333;
  margin: 10px 20px;
}
.sign_success{
  width: 260px;
}
.sign_number{
  font-size: 20px;
  color: #DB2122;
  font-weight: bold;
  margin-bottom: 20px;
}

/* 选择样式 */
.g-choose{
  width: 100px;
  line-height: 28px;
  text-align: center;
  font-size: 12px;
  border: 2px solid #E5E5E5;
  position: relative;
  cursor: pointer;
  user-select: none;
  margin-right: 20px;
}
.g-choose.active{
  border: 2px solid #3B9A45!important;
  color: #3B9A45;
  background: #fff;
}
.g-choose.active::before{
  display: block;
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-width: 10px;
  border-style: solid;
  border-color: transparent #3B9A45 #3B9A45 transparent;
}
.g-choose.active::after{
  display: block;
  content: "\2714";
  width: 12px;
  line-height: 10px;
  text-align: center;
  font-size: 10px;
  color: #fff;
  position: absolute;
  bottom: 0;
  right: 0;
}
