* { box-sizing: border-box; }

html, body { height:100%;  padding:0;  margin:0; }

body
{ display:flex;
  flex-direction: column;
  font: 14px/1.2 Verdana, Arial, Helvetica, sans-serif;
}

a { text-decoration: none; }
.clear { clear:both; height:0; width:0; margin:0; padding:0; }

/**************************************************************/

.breadcrumb
{ list-style: none;
  display: flex;
  flex-wrap: wrap;
  width: 1200px;
  margin: 0 auto;
  padding: 8px 12px;
  background-color: whitesmoke;
  box-sizing: border-box; 
}

.breadcrumb li { position: relative;  white-space:nowrap; }

.breadcrumb li:after
{ font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  padding-left: .5rem;
  color: #6c757d;
  content: "";
}
.breadcrumb li a { margin-left: .5rem;}
.breadcrumb li:last-child:after { content: ""; }
/**************************************************************/

.Content
{ flex: 1;
  max-width: 1200px;
  width:100%;
  margin: 5px auto;
  padding:5px;
  box-sizing: border-box; 
  display: flex;
  overflow-y: auto;
}

.Content h1
{ margin: 5px 0 3px 0;
  font-size: 20px;
  font-weight:  bold;
  color: DarkSlateBlue;
  text-indent:30px;
}

.Content h2
{ margin: 8px 0 3px 0;
  font-size: 16px;
  font-weight:  bold;
  color: black;
  text-indent:30px;
}

.Content h3
{ margin: 5px 0 3px 0;
  font-size: 14px;
  font-weight:  bold;
  color: black;
  text-indent:30px;
}

.Content p
{ margin: 3px 0;
  text-indent:30px;
  text-align: justify;
}
.Content p.Indent
{ margin: 3px 0;
  text-indent:50px;
  text-align: justify;
}
/**************************************************************/
.Filters
{ width:250px;
  float:left;
}

.Categories
{ width:100%;
  box-sizing: border-box;
}

.Categories>a:first-child
{ border-top: 1px solid grey; }

.Categories>a
{ display: block;
  border-bottom: 1px solid grey;
  padding: 5px 5px;
  color: black;
}

.Categories>a:hover
{ background-color: #e6f6ff; }

.SubCategories
{ width: 100%; 
  box-sizing: border-box;
}

.SubCategories>a
{ display: block;
  border-bottom: 1px solid grey;
  padding: 5px 5px 5px 15px;
  color: black;
}

.SubCategories>a:hover
{ background-color: #e6f6ff; }

/**************************************************************/
.ContentData
{ margin: 0px 0 0 5px;
  box-sizing: border-box; 
}

.ContentData.Category
{ width: 935px;
  float:left;
}

/**************************************************************/
div.GoodsItem
{ width: 285px;
  height:282px;
  margin:2px;
  border: 1px solid grey;
  border-radius: 5px;
  float:left;
  text-align:center;
  position:relative;
  box-sizing: border-box;
  transition: box-shadow 0.4s ease-in-out;

}

div.GoodsItem:hover
{ box-shadow: 0px 0px 10px blue;
  transition: box-shadow 0.4s ease-in-out;}

div.GoodsItem h1
{ text-align:center;
  margin:0; padding:0;
  font-size:14px;
  font-weight:bold;
  text-indent:0;
}

div.GoodsItem .GoodsImage
{ height: 180px;
  display: inline-block;
  vertical-align: middle;
}

div.GoodsItem img
{ max-width:200px;
  max-height:180px;
  margin:5px auto;
  vertical-align: middle;
}

div.GoodsItem p.Codes
{ display: block;
  position: absolute;
  left:5px;
  bottom: 5px;
  font-size: 12px;
  text-align:left;
  text-indent:0px;
}

div.GoodsItem p.Price
{ display: block;
  position: absolute;
  right:5px;
  bottom: 5px;
  font-size: 16px;
  font-weight:bold;
}
/**************************************************************/
.Goods
{ width: 100%;
  margin:2px;
}

.Goods .Image
{ width:49%;
  float:left;
}

.Goods img
{ max-width:100%;
  max-height:300px;
  margin:5px auto;
}

.Goods div.Details
{ float:left;
  width:49%;
}

.Goods h1
{ text-align:left;
  margin:0; padding:0;
  font-size:14px;
  font-weight:bold;
  text-indent:0;
}

.Goods p.Codes
{ font-size: 14px;
  text-align:left;
  text-indent:0px;
  float:left;
}

.Goods p.Price
{ font-size: 26px;
  font-weight:bold;
  float:right;
}

.Goods div.Desctiprion
{ width:100%;
}

/**************************************************************/
.Stores
{ display: flex;
  width:100%;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: nowrap;
}

.Stores .List
{ list-style-type: none;
  margin:0;  padding:0;
  float:left;
  margin-top:10px;
  border-top: 2px solid  grey;
  margin-bottom: 5px;
}

.Stores .List li
{ margin:0;
  border-bottom: 2px solid  grey;
}

.Stores .List li a
{ padding: 20px 10px;
  display: inline-block;
  width:100%;
  box-sizing: border-box; 
}

.Stores .List li:hover a
{ background-color: #eee;
  color: OrangeRed;
}

.Stores .Image
{ height: 200px;
  width:25%;
  float:left;
  overflow: hidden;
  text-align:center;
  margin-bottom: 5px;
}

.Stores .Image img
{ height:100%;
  width: 100%;
  object-fit: cover;
/*   margin: auto;*/
}
.Stores .Address
{ margin:20px 0 5px 30px;
  font-size: 15px;
  line-height: 30px;
  width:25%;
}

.Stores .WorkTime
{ font-size: 15px;
}
.Stores .WorkTime th
{ padding: 8px;
  font-size: 18px;
}

.Stores .WorkTime td
{ padding: 5px;
  font-size: 18px;
}
.Stores .WorkTime tr:nth-last-child(-n + 2)
{ color: OrangeRed; }

.Stores .Map
{  width:50%;
   height:300px;
}
/**************************************************************/
