﻿
*{	
	margin:0;
	padding:0;
	box-sizing:border-box;
	transition: all 0.3s;
}
a{
	text-decoration:none !important;
}
:root{
	--theme-color:#008DD2;

}
p{
	margin:0;
}
body{
	font-size:12px;
	font-size:1.2rem ;
	background:#f4f5f9;
}

input::-webkit-input-placeholder{ /*WebKit browsers*/
	color:#aaa;
}
input::-moz-input-placeholder{ /*Mozilla Firefox*/
	color:#aaa;
}
input::-ms-input-placeholder{ /*Internet Explorer*/ 
	color:#aaa;
}

.ellipsis1{
  word-break: break-all;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.ellipsis2{
  word-break: break-all;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}


/*flex*/
.flex1{
	flex:1;
}
.flex-wrap{
  flex-wrap: wrap;
}
.flex{
display: -webkit-box; /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */  
display: -moz-box; /* Firefox 17- */  
display: -webkit-flex; /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */  
display: -moz-flex; /* Firefox 18+ */  
display: -ms-flexbox; /* IE 10 */  
display: flex; /* Chrome 29+, Firefox 22+, IE 11+, Opera 12.1/17/18, Android 4.4+ */  
}
.flex-center{
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.flex-end{
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.space-between{
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.space-around{
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-around;
  justify-content:space-around;
}
.flex-start{
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.align-items_flex-end{
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.align-items_center{
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.align-items_baseline{
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  -webkit-align-items: baseline;
  align-items: baseline;
}
.container{
	width:94%;
	margin:auto;
    max-width: 1400px;
}
.flex-direction_column{
	flex-direction:column;
}
.pointer{
  cursor: pointer;
}

.header{
  height: 100px;
  position: sticky;
  top: 0;
  z-index: 10;
  background: #fff;
}
.header .search{
  width: 40%;
  border-radius: 6px;
  border: 2px solid var(--theme-color);
  padding: 4px;
}
.header .search .icon{
  margin-right: 20px;
  margin-left: 20px;
}
.header .search .input{
  border: none;
  font-size: 14px;
  line-height: 36px;
}
.header .search .btn{
  background: var(--theme-color);
  color:#fff;
  font-size: 14px;
  border-radius: 6px;
  line-height: 36px;
  padding: 0 30px;
  border: none;
  cursor: pointer;
}
.header .header_right{
  column-gap: 25px;
}
.header .header_right .btn svg{
  fill: #ccc;
  width: 24px;
  height: 24px;
}
.header .header_right .btn:hover svg{
  fill: var(--theme-color);
}
.header .language{
  font-size: 14px;
  column-gap: 20px;
  position: relative;
}
.header .language::after{
  position: absolute;
  content: '';
  width: 1px;
  height: 80%;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  background: #999;
}
.header .language a{
  color:#999;
}
.header .language a:hover{
  color:var(--theme-color);
}


.footer{
  background: #1D272B;
  color:#fff;
  padding: 50px 0 60px;
}
.footer .foot_left img{
  height: 100px;
}
.footer .foot_left .copyright{
  font-size: 12px;
  margin-top: 20px;
}
.footer .foot_mid{
  width: 40%;
}
.footer .foot_mid .bt{
  font-size: 20px;
  margin-bottom: 20px;
}
.footer .foot_mid .list a{
  width: 50%;
  opacity: .6;
  color:#fff;
  font-size: 14px;
  margin-bottom: 10px;
}
.footer .foot_mid .list a svg{
  fill: #fff;
  width: 10px;
  height: 10px;
}
.footer .foot_mid .list a:hover{
  opacity: 1;
}
.footer .foot_right img{
  width: 120px;
}
.footer .foot_right .t{
  font-size: 12px;
  margin-top: 10px;
}


.product_list{
  background: #fff;
  border-radius: 12px;
  margin: 20px auto;
  padding: 20px;
}
.product_list .big_title .t{
  font-size: 22px;
  margin-right: 10px;
}
.product_list .big_title .tag{
  color:rgba(255,255,255,.8);
  font-size: 10px;
  background: linear-gradient( to right , #F79365,#FE7E42);
  border-radius: 6px 6px 6px 0;
  padding: 2px 8px;
}
.product_list .list{
  column-gap: 10px;
}
.product_list .list .item{
  margin-top: 20px;
  width: calc((100% - 50px) / 6);
}
.product_list .list .item .thumb{
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.product_list .list .item .thumb img{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s;
}
.product_list .list .item:hover .thumb img{
  transform: scale(1.1);
}
.product_list .list .item .title{
  font-size: 15px;
  word-break: break-all;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  margin: 10px 0 12px;
  color:#000;
}
.product_list .list .item .price{
  color:#f40;
  font-size: 16px;
}
.product_list .list .item .price span{
  font-size: 12px;
}
.product_list .list .item .ys{
  color:#999;
  font-size: 12px;
  margin-left: 10px;
}
.product_list .list .item:hover .title{
  color:var(--theme-color);
}

.index_top{
  margin-top: 20px;
  column-gap: 20px;
}
.index_top .index_right,
.index_top .index_left{
  width: 20%;
  border-radius: 12px;
  background: #fff;
}
.index_top .index_left{
  padding: 20px 0;
}
.index_top .index_right{
  padding: 5px 0;
}
.index_top .index_left .title{
  padding: 0 25px;
  font-size: 18px;
  margin-bottom: 20px;
}
.index_top .index_left .title img{
  height: 20px;
  margin-right: 10px;
  display: block;
}
.index_top .index_left .navlist{
  margin-top: 25px;
  padding: 0 25px;
}
.index_top .index_left .navlist .default .icon img{
  height: 20px;
  margin-right: 20px;
  display: block;
}
.index_top .index_left .navlist a{
  color:#666;
  font-size: 16px;
  flex: 1;
}
.index_top .index_left .navlist a:hover{
  color:var(--theme-color);
}

.index_top .index_left .nav_list{
  column-gap: 15px;
  margin-top: 25px;
  padding: 0 20px;
  row-gap: 20px;
}
.index_top .index_left .nav_list .link{
  color:#666;
  font-size: 15px;
  white-space: nowrap;
  width: 100%;
}
.index_top .index_left .nav_list .icon{
  margin-right: 10px;
}
.index_top .index_left .nav_list .icon img{
  height: 22px;
}
.index_top .index_left .nav_list .link:hover{
  color:var(--theme-color);
}


.index_right .userinfo{
  background: linear-gradient(to bottom , #F0F9FD , #fff);
  border-radius: 12px 12px 0 0;
  padding: 20px 25px 30px;
}
.index_right .userinfo .tx{
  width: clamp(1px, calc(64 / 1920 * 100vw), 64px);
  height: clamp(1px, calc(64 / 1920 * 100vw), 64px);
  overflow: hidden;
  border-radius: 50%;
  margin-right: 15px;
}
.index_right .userinfo .tx img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index_right .userinfo .name{
  font-size: 17px;
  margin-bottom: 5px;
  white-space: nowrap;
}
.index_right .userinfo .desc{
  font-size: 13px;
  color:#999;
  white-space: nowrap;
}
.index_right .user_nav{
  column-gap: 30px;
}
.index_right .user_nav a img{
  height: 32px;
}
.index_right .user_nav a .t{
  font-size: 13px;
  color:#666;
  margin-top: 8px;
  white-space: nowrap;
}
.index_right .grzx_link{
  text-align: center;
  color:var(--theme-color);
  background: #EBF6FC;
  border-radius: 4px;
  font-size: 14px;
  display: block;
  width: calc(100% - 50px);
  margin: 30px auto 20px;
  line-height: 36px;
}
.index_right .grzx_link:hover{
  background: var(--theme-color);
  color:#fff;
}
.index_right .ptgg {
  padding: 20px 0 0;
  width: calc(100% - 50px);
  margin: 10px auto;
  border-top: 1px solid #f5f5f5;
}
.index_right .ptgg .btitle{
  font-size: 15px;
}
.index_right .ptgg .tt{
  font-size: 13px;
  color:#666;
  margin-top: 10px;
}
.index_right .user_nav a .t:hover,
.index_right .ptgg .tt:hover{
  color:var(--theme-color);
}

.index_swiper{
  overflow: hidden;
  border-radius: 12px;
}
.index_swiper .thumb{
    width: 100%;
    height: 100%;
}
.index_swiper .thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.index_swiper .el-carousel__indicator .el-carousel__button{
  border-radius: 2em;
  height: 8px;
  width: 18px;
}
.index_swiper .el-carousel__indicator.is-active button{
  width: 46px;
}

.ptgg_main  .img{
  display: block;
  margin:20px auto ;
}
.ptgg_main .title{
  font-size: 18px;
  text-align: center;
  margin-bottom: 20px;
}
.ptgg_main .content{
  color:#333;
  font-size: 15px;
  line-height: 1.8;
  padding: 0 20px;
}
.ptgg_main .close{
  margin-top: 30px;
  margin-bottom: 30px;
}
.ptgg_main .desc{
  color:#999;
  font-size: 14px;
}


.yar_adv{
  margin: 20px auto;
  background: #fff;
  border-radius: 12px;
  padding: 20px 0;
}
.yar_adv img{
  height: 50px;
  display: block;
  margin-right: 20px;
}
.yar_adv .tt{
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 5px;
}
.yar_adv .desc{
  font-size: 14px;
  color:#999;
}


.listpage .pagination{
	display:flex;
	justify-content:center;
	flex-wrap:wrap;
  margin-top: 40px;
  margin-bottom: 20px;
}
.listpage li{
	 background-color: #f1f1f1;
    color: #666;
    text-decoration: none;
    display: inline-block;
    font-size: 12px;
    height: 26px;
    line-height: 26px;
    margin: 5px 2px;
    padding:0 10px;
}
.listpage li a{
	color:#333;
	display:block;
}
.listpage li.active,
.listpage li:hover{
	background-color:var(--theme-color);
  color:#fff;
}
.listpage li.active a,
.listpage li:hover a{
	color:#fff;
}


.product_nav{
  border-bottom: 1px solid #eee;
  margin-top: 40px;
  padding: 0 15px;
}
.product_nav .item{
  font-size: 16px;
  padding-bottom: 15px;
  position: relative;
  color:#666;
}
.product_nav .item:not(:last-child){
  margin-right: 30px;
}
.product_nav .item.active::after{
  position: absolute;
  content: '';
  width: 80%;
  height: 3px;
  border-radius: 2em;
  bottom: 0;
  left: 10%;
  background: var(--theme-color);
}
.product_nav .item.active,
.product_nav .item:hover{
  color:var(--theme-color);
}

.details_top{
  column-gap: 50px;
  margin: 30px auto;
}
.details_top .details_top_l{
  column-gap: 10px;
  width: 45%;
}
.details_top .details_top_l .thumbs{
  width: 80px;
  height: 540px;
}
.details_top .details_top_l .thumbs .swiper-slide{
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
}
.details_top .details_top_l .gallery .swiper-slide img,
.details_top .details_top_l .thumbs .swiper-slide img{
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.details_top .details_top_l .thumbs .swiper-slide.swiper-slide-thumb-active{
  border-color:var(--theme-color);
}
.details_top .details_top_l .gallery{
  border-radius: 6px;
  overflow: hidden;
}
.details_top .title{
  font-size: 22px;
  margin-bottom: 20px;
  margin-top: 10px;
}
.details_top .price{
  color:#f40;
  font-size: 30px;
  margin-right: 15px;
}
.details_top .price span{
  font-size: 14px;
}
.details_top .ys{
  font-size: 14px;
  color:#999;
}
.details_top .btns{
  column-gap: 15px;
}
.details_top .btns .btn{
  width: 26%;
  text-align: center;
  padding: 12px 0;
  font-size: 15px;
  border-radius: 6px;
  cursor: pointer;
}
.details_top .btns .btn.c001{
  border: 1px solid var(--theme-color);
  color:var(--theme-color);
}
.details_top .btns .btn.c002{
  border: 1px solid var(--theme-color);
  color:#fff;
  background: var(--theme-color);
}
.details_top .btns .btn.c003{
  border: 1px solid #ddd;
  color:#333;
}
.details_top .btns .btn svg{
  margin-right: 10px;
}

.details_top .basic_info{
  margin-top: 30px;
  column-gap: 20px;
}
.details_top .basic_info .tt{
  font-size: 14px;
  color:#666;
  line-height: 35px;
}
.details_top .basic_info .gglist {
  column-gap: 20px;
}
.details_top .basic_info .gglist .op{
  text-align: center;
  font-size: 14px;
  border: 1px solid #eee;
  line-height: 35px;
  width: calc((100% - 20px) / 2);
  border-radius: 6px;
  margin-bottom: 10px;
  cursor: pointer;
}
.details_top .basic_info .gglist .op:hover,
.details_top .basic_info .gglist .op.active{
  color:#f40;
  border-color:#f40;
}
.details_top .basic_info .text{
  color:#333;
  font-size: 14px;
  line-height: 35px;
}
.details_top .basic_info .sy{
  color:#999;
  font-size: 14px;
  margin-left: 15px;
}

.details_top .basic_info .el-input-number__decrease:hover, 
.details_top .basic_info .el-input-number__increase:hover{
  color: #f40;
}
.details_top .basic_info .el-input-number__decrease:hover~.el-input:not(.is-disabled) .el-input__wrapper, 
.details_top .basic_info .el-input-number__increase:hover~.el-input:not(.is-disabled) .el-input__wrapper{
  box-shadow: 0 0 0 1px #f40 !important;
}

.details_bom{
  margin-top: 40px;
  margin-bottom: 40px;
}
.details_bom .title{
  font-size: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #eee;
}
.details_bom .title span{
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}
.details_bom .title span::after{
  position: absolute;
  content: '';
  width: 76%;
  left: 12%;
  height: 4px;
  border-radius: 2em;
  background: var(--theme-color);
  bottom: 1px;
}
.details_bom .content{
  line-height: 1.8;
  color:#666;
  padding: 0 20px;
}
.details_bom .content img{
  max-width: 100%;
  height: auto;
  display: block;
  margin: auto;
}

.shop_cart .big_title{
  font-size: 18px;
  margin: 20px auto;
}
.shop_cart_table .el-table{
  background: transparent;
}
.shop_cart_table .el-table__header{
  border-radius: 12px;
  overflow: hidden;
}
.shop_cart_table .el-table th.el-table__cell.is-leaf{
  border-bottom: none;
}
.shop_cart_table .el-table thead th{
  font-weight: normal;
  color:#333;
}
.shop_cart_table .el-table__body-wrapper{
  margin-top: 20px;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}
.shop_cart_table .el-table--fit .el-table__inner-wrapper:before{
  display: none;
}
.shop_cart_table .table_pro_detail .thumb{
  width: 80px;
  height: 80px;
  border-radius: 6px;
  overflow: hidden;
  margin-right: 20px;
}
.shop_cart_table .table_pro_detail .tt{
  font-size: 15px;
  color:#000;
  margin-bottom: 10px;
}
.shop_cart_table .table_pro_detail .gg{
  font-size: 14px;
  color:#999;
}
.shop_cart_table .table_pro_detail .thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.shop_cart_table .el-table .el-table__cell{
  padding: 20px 0;
}
.shop_cart_table .el-table .el-table__header .el-table__cell{
  padding: 15px 0;
}
.shop_cart_table .check{
  padding-left: 25px;
}
.shop_cart_table tbody tr:last-child .el-table__cell{
  border-bottom: none;
}
.shop_cart_table .el-table--enable-row-hover .el-table__body tr:hover>td.el-table__cell{
  /* background: #f4f5f9; */
}
.shop_cart_table .delete{
  cursor: pointer;
}
.shop_cart_table .delete:hover{
  color:var(--theme-color);
}

.shop_cart_bom{
  background: #fff;
  border-radius: 12px;
  margin: 20px auto;
  padding: 20px 25px;
}
.shop_cart_bom .ljgm{
  border: none;
  background: var(--theme-color);
  color:#fff;
  padding: 10px 40px;
  cursor: pointer;
  font-size: 15px;
  border-radius: 6px;
}
.shop_cart_bom .ljgm:hover{
  opacity: .8;
}
.shop_cart_bom .total{
  font-size: 14px;
  color:#999;
  margin-right: 15px;
}
.shop_cart_bom .total span{
  color: #f40;
}
.shop_cart_bom .zj{
  font-size: 14px;
}
.shop_cart_bom .zj .jg{
  color: #f40;
}
.shop_cart_bom .zj .jg span{
  font-size: 20px;
}


.el-input-number__decrease, 
.el-input-number__increase{
  background: #fff !important;
}
.el-input-number{
  width: 120px !important;
}


.shop_cart_address{
  background: #fff;
  border-radius: 12px;
  margin: 20px auto;
  padding: 20px 25px;
}
.shop_cart_address .top .title{
  font-size: 16px;
}
.shop_cart_address .top .add{
  font-size: 14px;
  color:var(--theme-color);
  cursor: pointer;
}
.shop_cart_address .receiver{
  margin: 20px 0;
  font-size: 14px;
  column-gap: 20px;
}
.shop_cart_address .receiver .info{
  position: relative;
  border-radius: 4px;
  border: 1px solid var(--theme-color);
  color:var(--theme-color);
  padding: 6px 20px;
  overflow: hidden;
}
.shop_cart_address .receiver .info .icon{
  position: absolute;
  bottom: 0;
  right: 0;
  background: var(--theme-color);
  border-radius: 4px 0 0 0;
  padding: 2px 4px 2px 4px;
}
.shop_cart_address .receiver .info .icon img{
  height: 6px;
  display: block;
}
.shop_cart_address .receiver .text{
  color:#666;
}
.shop_cart_address .receiver .mr{
  color:#fff;
  background: #999;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 11px;
}
.shop_cart_address .more{
  font-size: 12px;
  color:#999;
  cursor: pointer;
  transition: all 0.5s;
}
.shop_cart_address .more svg{
  width: 14px;
  height: 14px;
  fill:#999;
}
.shop_cart_address .more:hover{
  color: var(--theme-color);
}
.shop_cart_address .more:hover svg{
  fill: var(--theme-color);
}
.shop_cart_address .more.open svg{
  transform: rotate(-180deg);
}

.shop_cart_address .receiver_list .item{
  margin: 20px 0;
  font-size: 14px;
  column-gap: 20px;
}
.shop_cart_address .receiver_list .item .info{
  position: relative;
  border-radius: 4px;
  border: 1px solid #ddd;
  color:#666;
  padding: 6px 20px;
  overflow: hidden;
}
.shop_cart_address .receiver_list .item:hover .info,
.shop_cart_address .receiver_list .item.active .info{
  border: 1px solid var(--theme-color);
  color:var(--theme-color);
}
.shop_cart_address .receiver_list .item .info .icon{
  position: absolute;
  bottom: 0;
  right: 0;
  background: var(--theme-color);
  border-radius: 4px 0 0 0;
  padding: 2px 4px 2px 4px;
  display: none;
}
.shop_cart_address .receiver_list .item.active .info .icon{
  display: block;
}
.shop_cart_address .receiver_list .item .info .icon img{
  height: 6px;
  display: block;
}
.shop_cart_address .receiver_list .item .text{
  color:#666;
}
.shop_cart_address .receiver_list .item .mr{
  color:#fff;
  background: #999;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 11px;
}

.expand-container {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}
.expand-enter-active, .expand-leave-active {
  transition: all 0.3s ease;
  max-height: 500px;
}
.expand-enter-from, .expand-leave-to {
  max-height: 0;
  opacity: 0;
}





.order_table{
  background: #fff;
  border-radius: 12px;
  padding: 20px 25px;
}
.order_table .title{
  font-size: 16px;
  margin-bottom: 20px;
}
.order_table .el-table{
  background: transparent;
}
.order_table .el-table__header{
  border-radius: 12px;
  overflow: hidden;
}
.order_table .el-table th.el-table__cell.is-leaf{
  border-bottom: none;
  background: #F6F5F8;
}
.order_table .el-table thead th{
  font-weight: normal;
  color:#333;
}
.order_table .el-table--fit .el-table__inner-wrapper:before{
  display: none;
}
.order_table .table_pro_detail .thumb{
  width: 80px;
  height: 80px;
  border-radius: 6px;
  overflow: hidden;
  margin-right: 20px;
}
.order_table .table_pro_detail .tt{
  font-size: 15px;
  color:#000;
  margin-bottom: 10px;
  white-space: break-spaces;
}
.order_table .table_pro_detail .gg{
  font-size: 14px;
  color:#999;
}
.order_table .table_pro_detail .thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.order_table .el-table .el-table__cell{
  padding: 25px;
}
.order_table .el-table .el-table__header .el-table__cell{
  padding: 15px 0;
}
.order_table .el-table--enable-row-hover .el-table__body tr:hover>td.el-table__cell{
  background: transparent;
}
.order_table .el-table .el-table__header .el-table_1_column_1 .cell{
  padding-left: 25px;
}

.el-table tr:hover .table_pro_detail .tt{
  color: var(--theme-color);
}

.order_table .other_info{
  background: #F6F5F8;
  border-radius: 12px;
  padding: 20px 25px;
  color:#666;
}
.order_table .other_info .item{
  font-size: 14px;
}
.order_table .other_info .item:not(:last-child){
  margin-bottom: 20px;
}
.order_table .other_info .item .v {
  color:#000;
}
.order_table .other_info .item .v span{
  font-size: 20px;
}
.order_table .el-table__body .el-table__row:last-child .el-table__cell{
  border-bottom: none;
}

.grzx{
  column-gap: 30px;
  margin: 20px auto;
}
.grzx .grzx_left{
  width: 20%;
  min-width: 200px;;
}
.grzx .grzx_right{
  background: #fff;
  border-radius: 12px;
  padding: 30px 30px;
}
.grzx .grzx_left .userinfo{
  background: #fff;
  border-radius: 12px;
  padding: 40px 30px 20px;
}
.grzx .grzx_left .userinfo .nickname{
  font-size: 18px;
  margin: 12px 0 8px;
  cursor: pointer;
}
.grzx .grzx_left .userinfo .nickname .icon{
  width: 16px;
  height: 16px;
  display: inline-block;
  fill: var(--theme-color);
}
.grzx .grzx_left .userinfo .userid{
  font-size: 13px;
  color:#999;
}
.grzx .grzx_left .userinfo .lxkf{
  background: #EBF6FB;
  color:var(--theme-color);
  font-size: 14px;
  margin-top: 20px;
  border-radius: 4px;
  width: 100%;
  height: 40px;
  cursor: pointer;
}
.grzx .grzx_left .userinfo .lxkf svg{
  fill: var(--theme-color);
  width: 18px;
  height: 18px;
  margin-right: 10px;
}
.grzx .grzx_left .userinfo .lxkf:hover svg{
  fill: #fff;
}
.grzx .grzx_left .userinfo .lxkf:hover{
  color:#fff;
  background: var(--theme-color);
}
.grzx .usernav{
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  margin-top: 20px;
}
.grzx .usernav .item .icon{
  width: 18px;
  height: 18px;
  fill: #666;
  margin-right: 10px;
}
.grzx .usernav .item{
  color:#666;
  font-size: 16px;
  width: 100%;
  height: 40px;
  padding: 0 20px;
}
.grzx .usernav .item:not(:last-child){
  margin-bottom: 20px;
}
.grzx .usernav .item.active .icon,
.grzx .usernav .item:hover .icon{
  fill: var(--theme-color);
}
.grzx .usernav .item.active,
.grzx .usernav .item:hover{
  color: var(--theme-color);
}


.single .title{
  font-size: 24px;
  text-align: center;
  margin-bottom: 20px;
}
.single .content{
  line-height: 1.8;
}
.single .content img{
  display: block;
  max-width: 100%;
  height: auto;
}


.addressbook .top_title{
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.addressbook .top_title p{
  font-size: 18px;
}
.addressbook .top_title .add{
  font-size: 15px;
  color:var(--theme-color);
  cursor: pointer;
}
.addressbook .el-table th.el-table__cell.is-leaf{
  border-bottom: none;
  background: #F6F5F8;
}
.addressbook .el-table__header{
  border-radius: 12px;
  overflow: hidden;
}
.addressbook .el-table .el-table__cell{
  padding: 25px 10px;
}
.addressbook .el-table .el-table__header .el-table__cell{
  padding: 15px 10px;
}
.addressbook .el-table--enable-row-hover .el-table__body tr:hover>td.el-table__cell{
  background: transparent;
}
.addressbook .el-table thead th{
  font-weight: normal;
  color:#333;
}
.addressbook .oplist{
  font-size: 14px;
  column-gap: 30px;
}
.addressbook .oplist .btn{
  cursor: pointer;
}
.addressbook .oplist .btn.c01{
  color: #f40;
}
.addressbook .oplist .btn.c02{
  color: var(--theme-color);
}
.addressbook .oplist .btn:hover{
  opacity: .8;
}


.tjdz_main{
  padding: 30px 20px 10px;
}
.tjdz_main .btn{
  padding: 0 35px;
  margin-top: 10px;
}
.el-textarea__inner{
  outline:none;
  resize:none;
}
.tjdz_main .el-form-item{
  margin-bottom: 22px;
}
.grzx_right .el-tabs__item{
  font-size: 16px;
  color: #999;
  line-height: 1;
  height: auto;
  padding-bottom: 20px;
}
.grzx_right .el-tabs__item.is-active,
.grzx_right .el-tabs__item:hover{
  color:#000;
}
.grzx_right .el-tabs__active-bar{
  height: 4px;
  border-radius: 2em;
  background: var(--theme-color);
}


.grzx_right .order_table{
  padding: 0;
  margin-top: 10px;
}
.grzx_right .table_th .el-table__empty-block{
  display: none;
}
.grzx_right .order_top{
  column-gap: 30px;
  font-size: 14px;
  color:#333;
  background: #F6F5F8;
}
.grzx_right .order_top .numer{
  color:#666;
}
.grzx_right .table{
  margin-bottom: 30px;
}
.grzx_right .table table{
  border-collapse: collapse; 
  font-size: 14px;
}
.grzx_right .table thead tr{
  background: #F6F5F8;
  border-radius: 12px;
}
.grzx_right .table thead th{
  padding: 15px 0;
  border: none;
  font-size: 14px;
  color:#333;
  font-weight: normal;
}
.grzx_right .table thead th:first-child{
  padding-left: 25px;
  border-radius: 12px 0 0 12px;
}
.grzx_right .table thead th:last-child{
  border-radius: 0 12px 12px 0;
}
.grzx_right .table tbody td{
  border: 1px solid #eee;
  padding: 25px 0;
  text-align: center;
  vertical-align: top;
}
.grzx_right .table tbody td:first-child{
  border-left: none;
}
.grzx_right .table tbody td:last-child{
  border-right: none;
}
.grzx_right .table tbody tr:first-child td{
  border-top: none;
}
.grzx_right .table .dj,
.grzx_right .table .sl{
  text-align: center;
  width: 100px;
  color:#000;
}
.grzx_right .table .table_pro_list .table_pro_detail .left{
  padding-left: 15px;
  padding-right: 15px;
  text-align: left;
}
.grzx_right .table .table_pro_list .table_pro_detail:not(:last-child){
  border-bottom: 1px solid #eee;
  padding-bottom: 25px;
  margin-bottom: 25px;
}
.grzx_right .table .table_pro_list .table_pro_detail:hover .tt{
  color: var(--theme-color);
}
.grzx_right .table .op_btn{
  row-gap: 10px;
  padding: 0 20px;
}
.grzx_right .table .op_btn .ljfk{
  color:#fff;
  border-radius: 4px;
  background: var(--theme-color);
  cursor: pointer;
  padding: 8px 0;
}
.grzx_right .table .op_btn .ljfk:hover{
  opacity: .8;
}
.grzx_right .table .op_btn .btn{
  cursor: pointer;
  color:#000;
}
.grzx_right .table .op_btn .btn:hover{
  color:var(--theme-color);
}
/* 待付款 */
.grzx_right .table  .static.c01{
  color:#f00;
}

/* 待发货 */
.grzx_right .table  .static.c02{
  color:#f90;
}

/* 待收货 */
.grzx_right .table  .static.c03{
  color:#09f;
}

/* 已完成 */
.grzx_right .table  .static.c04{
  color:rgb(9, 189, 3);
}

/* 已取消/退款 */
.grzx_right .table  .static.c05{
  color:#ccc;
}

.order_detail_top{
  margin-bottom: 30px;
}
.order_detail_top .big_title{
  font-size: 18px;
  margin-bottom: 20px;
}
.order_detail_top .main{
  border-bottom: 1px solid #eee;
  position: relative;
}
.order_detail_top .main::before{
  position: absolute;
  content: '';
  left: 33%;
  width: 1px;
  height: calc(100% - 49px);
  top: 49px;
  background: #eee;
}
.order_detail_top .main .title{
  background: #F6F5F8;
  border-radius: 12px;
  padding:0 0 0 25px;
  font-size: 15px;
  height: 49px;
  line-height: 49px;
}
.order_detail_top .main .left{
  padding: 25px;
}
.order_detail_top .main .right{
  padding: 25px 35px;
}
.order_detail_top .main .left{
  width: 33%;
}
.order_detail_top .main .left .info{
  margin-bottom: 15px;
  font-size: 14px;
  color:#666;
  line-height: 1.6;
}
.order_detail_top .right .btn{
  padding: 0 30px;
  margin-top: 25px;
}

.order_detail_top .right .static_text{
  font-size: 16px;
  margin-bottom: 15px;
}
.order_detail_top .right .tips{
  color:#666;
  font-size: 14px;
}
.order_detail_top .right .wzf{
  color:#666;
  font-size: 14px;
}
.order_detail_top .right .wzf .el-statistic__number{
  font-size: 14px;
  color:var(--theme-color);
  margin: 0 5px;
}

.login_main .title{
  font-size: 20px;
  margin-bottom: 30px;
  color:#000;
}
.login_main .btn{
  width: 80%;
  margin-bottom: 10px;
}
.login_main .el-input__inner{
  height: 36px;
  line-height: 36px;
}
.login_main .yzmbtn{
  font-size: 13px;
}
.grzx .grzx_left .userinfo .out:hover,
.login_main .ysxy span,
.login_main .yzmbtn:hover{
  color:var(--theme-color);
}
.login_main .ysxy{
  font-size: 12px;
  color:#999;
  margin-bottom: 30px;
  text-align: center;
}

.grzx .grzx_left .userinfo .out{
  font-size: 14px;
  color:#ccc;
  margin-top: 20px;
}
.grzx .grzx_left .userinfo .out svg{
  fill: #ccc;
  width: 18px;
  height: 18px;
  margin-right: 6px;
  transition: none;
}
.grzx .grzx_left .userinfo .out:hover svg{
  fill: var(--theme-color);
}

@media (max-width: 1200px) {
    .index_right .user_nav{
        column-gap: 10px;
    }
    .index_top .index_left .nav_list .icon{
        margin-right: 5px;
    }
    .details_top .basic_info .gglist .op{
        width: 100%;
    }
    .product_nav{
        display: block;
        overflow-x: scroll;
        white-space: nowrap;
    }

}