* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* 设置当前页二级分类 */
			.dropdown-1 div {
				width: 68px;
				height: 50px;
				text-align: center;
			}
			
			.dropdown-1 div:hover {
				/* color: #fff; */
				background-color: #fff;
				/* opacity: 0.6; */
			}
			
			.dropdown-1 li {
				width: 65px;
			}
			
			.dropmenu-1 {
				height: 150px;
			}
			
			/* 一级菜单基本颜色 */
			.dropdown-1 {
				background-color: #7f7f7f;
				display: none;
				position: absolute;
				opacity: 0.9;
			}
			
			/* 显示下拉一级菜单 */
			.dropdown li:hover .dropdown-1 {
				display: block;
			}
			
			

/* 设置分类筛选 和翻页*/
			.container_filter {
				/* width: 100px; */
				/* height: 30px; */
				/* background-color: aqua; */
				display: flex;
				justify-content: space-between;
				/* border: 1px solid red; */
			}
			
			/* 设置左边筛选为块 */
			.container_filter-left {
				width: 100px;
				height: 35px;
				line-height: 35px;
				text-align: left;
				display: inline-block;
				border-bottom: #999 1px solid;
				background-image: url('../img/arrow_down.png');
				background-repeat: no-repeat;
				background-size: 12px;
				background-position-x: right;
				background-position-y: center;
			}
			
			/* 鼠标经过箭头切换为向上 */
			.container_filter-left:hover {
				background-image: url('../img/arrow_up.png');
			}
			
			/* 设置分页 */
			.pagination  li {
				width: 20px;
				text-align: center;
				display: inline-block;
				/* padding: 0 10px; */
			}
			
			.pagination li a {
				font-size: 14px;
				color: #333;
				text-decoration: none;
			}
			
			.pagination li:hover {
				color: #2bc0a4;
				background-color: #f0f0f0;
			}
			
			.pagination img:first-child {
				width: 12px;
				transform: rotate(-90deg);
			}
			
			/* 设置选中分页样式 */
			.pagination .paginnation_active {
				border-bottom: #2bc0a4 2px solid;
			}
			
			/* 设置便捷筛选的下拉菜单样式 */
			.filerlist {
				position: absolute;
				display: none;
				width: 100px;
				height: 225px;
				padding: 0;
				margin: 0;
				background-color: #f9f9f9;
				border: #f0f0f0 1px solid;
				/* z-index: -1; */
			}
			
			.filerlist_m {
				position: absolute;
				display: none;
				width: 100px;
				height: 180px;
				padding: 0;
				margin: 0;
				background-color: #f9f9f9;
				border: #f0f0f0 1px solid;
			}
			
			.filerlist li {
				text-align: center;
				height: 45px;
				line-height: 45px;
			}
			
			.filerlist_m li {
				text-align: center;
				height: 45px;
				line-height: 45px;
			}
			
			.filerlist a,.filerlist_m a {
				color: #999;
				font-size: 14px;
			}
			
			/* 设置鼠标划过字体样式 */
			.filerlist li a:hover,.filerlist_m li a:hover {
				color: #333;
			}
			
			.filerlist li:hover,.filerlist_m li:hover {
				background-color: #f0f0f0;
				line-height: 45px;
			}
			
			/* 显示女装筛选下拉菜单 */
			.container_filter-left:hover  .filerlist {
				display: block;
				background-color: #f9f9f9;
			}
			
			/* 显示男装筛选下拉菜单 */
			.container_filter-left:hover  .filerlist_m {
				display: block;
				background-color: #f9f9f9;
			}
			
			/* 设置款式图片列表 */
			.container_goods {
				margin-top: 30px;
				/* border: #999 1px solid; */
			}
			
			/* 设置商品排列方式 */
			.products {
				display: flex;
				justify-content: space-between;
			}
			
			.products_item {
				display: flex;
				flex-direction: column;
				width: 300px;
				height: 520px;
				/* border: #999 1px solid; */
				margin-right: 20px;
				margin-bottom: 20px;
				background-color: #f9f9f9;
				border-radius: 5px;
				box-sizing: border-box;
			}

		.products_item:hover {
			box-shadow: rgba(0, 0, 0, 0.09) 0px 3px 12px;
			transition: all .5s;
		}

			.products div:last-child {
				margin: 0px;
			}
			
			/* 设置商品封面图 */
			.products_item img {
				width: 277px;
				height: 417px;
				border-radius: 5px 5px 0px 0px;
			}
			
			/* 设置商品标题 */
			.goodstitle {
				padding: 20px 20px;
			}
			
			.goodstitle a {
				color: #333;
			}
			
			.goodstitle a:hover {
				color: #2bc0a4;
			}
			
			/* 设置商品价格 */
			.goodsprice {
				padding: 0 20px;
			}
			
			.goodsprice h6 {
				color: #2bc0a4;
			}
			
			.goodsqrcode {
				width: 100%;
			}
			
			#icon-qrcode {
				width: 40px;
				height: 40px;
				transform: rotate(90deg);
				margin-top: -30px;
				margin-left: 232px;
			}