@charset "UTF-8";
/* 清除浮动  */
/*弹性盒子居中（传入null不设置该属性）
row , column
flex-start , space-between , space-around , flex-end
flex-start , center , flex-end
*/
/*绝对定位  参数顺序：上右下左*/
/* 圆形盒子 */
/*文本格式化，超出范围，显示省略号*/
@-webkit-keyframes shine {
  from {
    background-position: 100%;
  }
  to {
    background-position: 0;
  }
}
/*渐变(从上到下）*/
/* css3动画 默认3s宽度到200px */
/* 画三角形 */
/*颜色定义*/
/*背景主色调 */
/*背景副色调*/
/*按钮背景色*/
/*按钮背景色*/
/*按钮背景色*/
/*通用样式*/
body, li, ul, dl, dd, dt, p, h1, h2, h3 {
  padding: 0;
  margin: 0;
  border: 0;
}

a {
  color: #333333;
  text-decoration: none;
}
a:hover {
  color: #FF464E;
}

a:hover, a:visited, a:active, a:link {
  text-decoration: none;
}

i, em {
  font-style: normal;
}

li {
  list-style: none;
}

img {
  border: 0;
}
img:hover {
  opacity: 0.9;
  filter: alpha(opacity=90);
}

.clear {
  *height: 1%;
}
.clear:after {
  clear: both;
  content: ".";
  display: block;
  height: 0;
  line-height: 0;
  overflow: hidden;
}

html, body, h1, h2, h3 {
  font-size: 14px;
  color: #333333;
  font-family: "Microsoft Yahei", "微软雅黑", "Helvetica", "黑体", "Hiragino Sans GB", Arial, SimSun, "宋体", sans-serif;
}

body {
  background-color: #F5F5F5;
}

/*按钮通用样式*/
.layui-btn-danger {
  background: -webkit-linear-gradient(right, #F540AA, #F56582, #F79656); /* Safari 5.1 - 6.0 */
  background: -o-linear-gradient(right, #F540AA, #F56582, #F79656); /* Opera 11.1 - 12.0 */
  background: -moz-linear-gradient(right, #F540AA, #F56582, #F79656); /* Firefox 3.6 - 15 */
  background: linear-gradient(to right, #F540AA, #F56582, #F79656); /* 标准的语法 */
}

/*头部*/
.header {
  background-color: #ffffff;
  /*导航*/
}
.header .top {
  width: 100%;
  margin: 0 auto;
  height: 30px;
  line-height: 30px;
  background-color: #f7f7f7;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#FFF7F7F7, endColorstr=#FFF7F7F7);
  border-bottom: solid 1px #eee;
}
:root .header .top {
  filter: none;
}
.header .top .in {
  width: 1200px;
  margin: 0 auto;
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.header .top .in .left i {
  margin-right: 5px;
}
.header .top .in .left a {
  color: #999;
}
.header .top .in .right span, .header .top .in .right a {
  margin: auto 5px;
  cursor: pointer;
  font-size: 12px;
  color: #666;
}
.header .logo {
  width: 1200px;
  margin: 0 auto;
  height: 100px;
}
.header .logo .left {
  width: 500px;
  height: 100px;
  float: left;
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  /*
  //空心效果
  .logo { color:#0074FF; text-shadow: 1px 1px #000,-1px -1px #000, 1px -1px #000, -1px 1px #000; font-size: 30px; font-family:"Microsoft YaHei"; }
  //发光效果
  .logo { color:#0074FF; text-shadow: 0 0 .1em, 0 0 .3em;font-size: 30px;font-family:"Microsoft YaHei"; }
  //文字凸起效果
  .logo { color:#0074FF; text-shadow: 0 1px hsl(0, 0%, 85%),0 2px hsl(0, 0%, 80%),0 3px hsl(0, 0%, 75%),0 4px hsl(0, 0%, 70%),0 5px hsl(0, 0%, 65%),0 5px 10px black;font-size: 30px;font-family:"Microsoft YaHei"; }
  */
}
.header .logo .left img {
  width: 50px;
  margin-right: 20px;
}
.header .logo .left a {
  color: #FF464E;
  font-size: 32px;
  font-weight: bold;
  font-family: "Microsoft Yahei", "微软雅黑", "Helvetica", "黑体", "Hiragino Sans GB", Arial, SimSun, "宋体", sans-serif;
  text-shadow: 0 0 2px #FFF, 0 -2px 2px #ff3, 1px -3px 2px #fd3, -1px -5px 3px #f80, 1px -5px 4px #f20;
}
.header .logo .search {
  float: left;
  margin-left: 30px;
  width: 380px;
}
.header .logo .search form {
  width: 380px;
  border: solid 2px #FF464E;
  border-radius: 3px;
  position: relative;
  margin-top: 33px;
}
.header .logo .search form .key {
  width: 300px;
  height: 32px;
  padding-left: 10px;
  border: none;
  outline: none;
}
.header .logo .search form .submit {
  position: absolute;
  left: auto;
  right: 0;
  top: 0;
  bottom: 0;
  width: 70px;
  height: 34px;
  line-height: 34px;
  color: #fff;
  background-color: #FF464E;
  border: 0;
  cursor: pointer;
}
.header .logo .search .tag {
  margin-top: 10px;
}
.header .logo .search .tag a {
  margin-right: 1.5em;
  font-size: 12px;
}
.header .logo .right {
  width: 350px;
  height: 32px;
  float: right;
  margin-top: 35px;
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.header .logo .right a {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.header .logo .right i {
  font-size: 26px;
  color: #FF464E;
  float: left;
  margin-left: 25px;
}
.header .logo .right span {
  color: #999;
  font-size: 14px;
  margin-top: 3px;
  float: left;
  margin-left: 5px;
}
.header .nav {
  width: 100%;
  height: 40px;
  background-color: #fff;
  border-bottom: 2px solid #FF464E;
}
.header .nav .in {
  width: 1200px;
  margin: 0 auto;
  position: relative;
}
.header .nav .in ul {
  width: 100%;
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}
.header .nav .in ul li {
  width: 150px;
  height: 40px;
  text-align: center;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  margin-right: 10px;
}
.header .nav .in ul li a {
  display: block;
  line-height: 40px;
  color: #333;
  font-size: 15px;
}
.header .nav .in ul li.cur, .header .nav .in ul li:hover {
  background: #cf262d;
}
.header .nav .in ul li.cur a, .header .nav .in ul li:hover a {
  color: #fff;
}
.header .nav .in ul li.tm {
  position: absolute;
  top: 0;
  right: 0;
}
.header .nav .in ul li.tm a i {
  color: #FF464E;
  font-size: 40px;
}
.header .nav .in ul li.tm:hover {
  background: none;
}
.header .nav .in ul li.tm:hover i {
  text-decoration: underline;
}
.header .nav_com_fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

/*通用左右模块*/
.com_box {
  width: 1200px;
  margin: 0 auto;
  *height: 1%;
  margin-top: 15px;
  padding-bottom: 10px;
}
.com_box:after {
  clear: both;
  content: ".";
  display: block;
  height: 0;
  line-height: 0;
  overflow: hidden;
}
.com_box .left {
  width: 300px;
  float: left;
  overflow: hidden;
}
.com_box .right {
  width: 870px;
  float: right;
  overflow: hidden;
}

/*通用盒子模块*/
.box {
  width: 100%;
  clear: both;
  margin: 0 auto 20px;
  background-color: #fff;
}
.box .head, .box .head1 {
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.box .head .tt, .box .head1 .tt {
  margin: 0 20px;
  font-size: 16px;
  font-weight: bold;
  display: inline-block;
  color: #666;
  height: 38px;
  border-bottom: 2px #FF464E solid;
}
.box .head .tt i, .box .head1 .tt i {
  color: #666;
  margin-right: 5px;
  font-size: 18px;
}
.box .head .more, .box .head1 .more {
  margin-right: 10px;
  color: #999;
  font-size: 12px;
}
.box .head .more i, .box .head1 .more i {
  font-size: 10px;
  margin-left: 5px;
}
.box .head a:hover .tt, .box .head1 a:hover .tt {
  color: #FF464E;
}
.box .head1 {
  height: 40px;
  line-height: 40px;
  border-bottom: solid 1px #ECECEC;
}
.box .main {
  width: 100%;
  overflow: hidden;
}

/*公司简介*/
.info .main {
  width: 260px;
  padding: 20px;
  overflow: hidden;
}
.info .main .name {
  color: #105599;
  font-size: 16px;
}
.info .main .man {
  width: 100%;
}
.info .main .man .address {
  display: inline-block;
  cursor: pointer;
  width: 104px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  color: #666;
  background-position: 0 -342px;
  background-color: #F1F1F1;
  border: 1px #D7D7D7 solid;
  border-radius: 3px;
  margin-top: 10px;
}
.info .main .num {
  font-size: 14px;
  color: #FF464E;
  margin-top: 10px;
}
.info .main .go {
  margin-top: 20px;
}

/*联系方式*/
.lianxi .main {
  width: 260px;
  padding: 20px;
}
.lianxi .main p {
  line-height: 20px;
  margin-bottom: 10px;
  color: #666;
}
.lianxi .main p span {
  color: #333;
}

/*热门点击*/
.hot-good .main {
  width: 260px;
  padding: 20px;
}
.hot-good .main ul li {
  width: 100%;
  height: 40px;
  line-height: 40px;
  border-bottom: 1px #eee dashed;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.hot-good .main ul li a {
  font-size: 14px;
  color: #333;
  margin-left: 10px;
}
.hot-good .main ul li a:hover {
  color: #FF464E;
  text-decoration: underline;
}

/*公司简介*/
.jianjie .main {
  width: 830px;
  padding: 20px;
  font-size: 14px;
  line-height: 30px;
}
.jianjie .main .banner {
  overflow: hidden;
  clear: both;
}
.jianjie .main .banner .img {
  max-width: 300px;
  float: left;
  margin-right: 15px;
}
.jianjie .main p {
  margin-top: 15px;
  color: #666;
}
.jianjie .main p b {
  color: #333;
}

/*联系我们*/
.jianjie2 .main {
  width: 830px;
  padding: 20px;
  font-size: 14px;
  line-height: 30px;
}
.jianjie2 .main p {
  font-size: 14px;
  line-height: 30px;
  margin-top: 10px;
}
.jianjie2 .main img {
  width: 400px;
  margin-top: 20px;
}

/*商品列表*/
.goods .main {
  width: 100%;
  padding-bottom: 20px;
}
.goods .main ul {
  width: 100%;
}
.goods .main ul li {
  width: 240px;
  height: 300px;
  padding: 10px;
  float: left;
  margin: 20px 0 0 20px;
  border: 1px #fff solid;
}
.goods .main ul li .pic {
  width: 240px;
  height: 240px;
  margin-bottom: 10px;
  display: inline-block;
}
.goods .main ul li .pic img {
  max-width: 100%;
  max-height: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.goods .main ul li .pic:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.goods .main ul li .title {
  font-size: 14px;
  color: #333;
  line-height: 26px;
}
.goods .main ul li:hover {
  box-shadow: 0 0 8px rgba(255, 70, 78, 0.5);
}

/*评论*/
.comment .main ul {
  width: 100%;
}
.comment .main ul li {
  width: 820px;
  overflow: hidden;
  clear: both;
  margin: 20px 20px;
  padding-bottom: 20px;
  border-bottom: 1px #eee dashed;
}
.comment .main ul li i {
  font-size: 30px;
  color: #FF464E;
  float: left;
  width: 30px;
}
.comment .main ul li .txt {
  margin-left: 20px;
  float: left;
  width: 770px;
}
.comment .main ul li .txt span {
  font-size: 12px;
  color: #999;
}
.comment .main ul li .txt p {
  font-size: 12px;
  color: #666;
  line-height: 1.5em;
  margin-top: 10px;
}

/*友情链接*/
.f-link .main {
  width: 1160px;
  padding: 20px;
}
.f-link .main a {
  color: #999;
  display: inline-block;
  width: 20%;
  float: left;
  line-height: 24px;
}

/*发布评论*/
.pubPl .main {
  width: 100%;
  padding-bottom: 20px;
}
.pubPl .main .textarea {
  width: 90%;
  border: 1px #eee solid;
  height: 80px;
  margin-left: 20px;
  margin-top: 20px;
}
.pubPl .main .sub {
  width: 100px;
  height: 30px;
  display: inline-block;
  color: #fff;
  line-height: 30px;
  text-align: center;
  background-color: #FF464E;
  border-radius: 4px;
  cursor: pointer;
  margin-left: 20px;
  margin-top: 10px;
}

/*商品详情*/
.detail {
  width: 100%;
  overflow: hidden;
}
.detail .pic {
  width: 300px;
  height: 300px;
  float: left;
  margin: 20px;
}
.detail .pic img {
  max-width: 100%;
  max-height: 100%;
}
.detail .right {
  width: 460px;
  float: left;
  margin-top: 20px;
  margin-left: 20px;
}
.detail .right h1 {
  font-size: 18px;
  color: #333;
  line-height: 1.8em;
  font-weight: bold;
}
.detail .right .info {
  font-size: 14px;
  color: #666;
  line-height: 2.4em;
  margin-top: 30px;
}
.detail .right .info .go {
  margin-top: 20px;
}

.detail-last-next {
  width: 100%;
  padding: 20px 0;
  background-color: #fff;
  border-top: 1px #eee solid;
}
.detail-last-next li {
  width: 820px;
  margin-left: 20px;
  line-height: 30px;
}
.detail-last-next li a {
  font-size: 14px;
  color: #666;
}
.detail-last-next li a:hover {
  color: #FF464E;
}

/*公共底部*/
.footer {
  overflow: hidden;
  border-top: 2px #FF464E solid;
}
.footer ul {
  width: 100%;
  text-align: center;
}
.footer ul li {
  display: inline-block;
}
.footer ul li a, .footer ul li span {
  color: #666;
  margin-left: 15px;
  margin-right: 15px;
}
.footer ul li:last-child {
  border-right: 0;
}
.footer .in {
  margin: 30px auto;
  text-align: center;
  color: #999;
  line-height: 30px;
}
.footer .in a, .footer .in span {
  color: #999;
}
.footer .tj {
  display: none;
}

/*# sourceMappingURL=pc_shop.css.map */
