﻿@charset "utf-8";

/*==========@@HTML默认 始====@@==========*/
/*基本*/
* {
  padding: 0px;
  margin: 0px
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
button,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

body {
  color: #000;
  margin: 0px auto;
  font-family: "Arial", "Microsoft YaHei";
  font-size: 14px;
  background: #fff;
}

div {
  margin: 0;
  padding: 0;
  border: 0;
}

img {
  margin: 0;
  padding: 0;
  border: 0;
}

p {
  margin: 0px;
  line-height: 1.8em
}

b,
strong {
  font-weight: bold;
}

/* 表格样式 */
table {
  width: 100%;
  /* 表格宽度设置为100% */
  border-collapse: collapse;
  /* 边框合并为一个单一的边框 */
}

/* 表格边框样式 */
table,
th,
td {
  border: 1px solid #dedede;
  /* 设置边框为1px黑色实线 */
}

/* 表头样式 */
th {
  background-color: #f2f2f2;
  /* 设置背景色 */
  color: black;
  /* 设置文字颜色 */
  padding: 8px;
  /* 设置内边距 */
  text-align: left;
  /* 文本左对齐 */
}

/* 表格单元格样式 */
td {
  padding: 8px;
  /* 设置内边距 */
  text-align: left;
  /* 文本左对齐 */
}

/* 鼠标悬停在表格行上的样式 */
tr:hover {
  background-color: #f6f6f6;
  /* 鼠标悬停时改变背景色 */
}

li {
  list-style: none outside none;
}

/*链接*/
a {
  text-decoration: none;
  color: #626262;
  background: transparent;
  outline: none
}

/*a:visited {*/
/*  color: #aaa;*/
/*}*/

a:focus {
  outline: none;
}

a:hover {
  color: #000;
}

a:active {
  outline: none;
}

/*标题*/
h1 {
  font-size: 1.3em;
  margin: 0;
}

h2 {
  font-size: 1.2em;
  margin: 0;
}

h3 {
  font-size: 1.17em;
  margin: 0;
}

h4 {
  font-size: 1em;
  margin: 0;
}

h5 {
  font-size: 0.83em;
  margin: 0;
}

h6 {
  font-size: 0.67em;
  margin: 0;
}

/*表单*/
/*form {margin: 0;}*/
/*button,input,select,textarea { font-size: 100%;margin: 3px; vertical-align: baseline; *vertical-align: middle; }*/
/*button,select {text-transform: none;}*/
/*input{padding:2px;background-color: #FFFFFF;border: 1px solid #ccc;width:99%;line-height: normal;}*/
/*textarea{padding: 2px;color: #000000;background-color: #fff;width:99%;}*/

/*其它*/
blockquote {
  margin: 1em 40px;
}

dfn {
  font-style: italic;
}

hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

code,
kbd,
pre,
samp {
  font-size: 1em;
}

pre {
  margin: 1em 0;
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
  /* Prevent `sub` and `sup` affecting `line-height` in all browsers.*/
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

dl {
  margin: 1em 0;
}

dd {
  margin: 0 0 0 40px;
}

/*==========@@HTML默认  结束@@==========*/


/*==========@@元件 始@@==========*/
/*常用颜色*/
.blue {
  color: #00F !important;
}

.green {
  color: #0F0 !important;
}

.red {
  color: #F00 !important;
}

.black {
  color: #000000 !important;
}

.white {
  color: #FFFFFF !important;
}

.gray {
  color: gray;
  !important;
}

.purple {
  color: purple;
  !important;
}

/*浮动*/
.clear {
  display: block;
  clear: both;
  height: 3px;
  overflow: hidden;
  line-height: 3px;
}

.float_left {
  float: left;
}

.float_right {
  float: right;
}

/*对齐方式*/
.left {
  text-align: left
}

.right {
  text-align: right
}

.center {
  text-align: center
}

/*按钮*/
.btn {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  display: -moz-inline-stack;
  display: inline-block;
  *display: inline;
  vertical-align: middle;
  *vertical-align: auto;
  zoom: 1;
  height: 32px;
  line-height: 32px;
  padding: 0px 20px;
  font-weight: 300;
  font-size: 14px;
  margin: 0;
  text-decoration: none;
  text-align: center;
  text-indent: 0;
  cursor: pointer;
  border: 1px solid #d4d4d4;
  /* color: #666666; */
}

/*默认样式*/
.btn {
  /* background-color: #2b2b2b; */
  color: #555555;
}

.btn:hover {
  /* background-color: #000; */
  color: #000;
}

.btn:active {
  /* background: #000; */
  color: #000;
}

/*按钮大小*/
.btn-large {
  font-size: 19px;
  height: 38.4px;
  line-height: 38.4px;
  padding: 0px 26px;
}

.btn-small {
  font-size: 12px;
  height: 25.6px;
  line-height: 25.6px;
  padding: 0px 16px;
}

.btn-tiny {
  font-size: 12px;
  height: 22.4px;
  line-height: 22.4px;
  padding: 0px 13px;
}

/*块按*/
.btn-block {
  display: block;
}

/*表单*/
.form_text,
.form_text:hover,
.form_text_verifycode,
.form_text_verifycode:hover {
  border-color: #a0a0a0 #cbd9eb #cbd9eb #a0a0a0;
  border-width: 1px;
  height: 20px;
  line-height: 20px;
  clip: rect;
  padding: 2px;
  color: #000000;
}

.form_text {
  width: 95%;
  background-position: 0px 0px;
}

.form_text:hover {
  background-position: 0px -37px;
}

.form_text_verifycode {
  width: 50px;
  margin-right: 3px;
  background-position: 0px 0px;
}

.form_text_verifycode:hover {
  background-position: 0px -37px;
}

.form_radio {
  width: auto;
  border: 0;
}

.form_checkbox {
  width: auto;
  border: 0
}

.form_select {
  height: 25px;
}

.form_textarea {
  width: 95%;
  height: 80px;
  border-color: #a0a0a0 #cbd9eb #cbd9eb #a0a0a0;
  border-width: 1px;
  padding: 2px;
}

.form_button {
  width: auto;
  vertical-align: middle;
  border: 0 none;
  /*解决ie焦点是有黑色边框*/
}

input[type="reset"]::-moz-focus-inner,
input[type="button"]::-moz-focus-inner,
input[type="submit"]::-moz-focus-inner,
input[type="file"]>input[type="button"]::-moz-focus-inner {
  border: none;
  padding: 0;
}

.required {
  /* color: red; */
  font-weight: bold;
  text-align: left;
  padding-left: 3px;
}

/*其它*/
.hide {
  display: none;
}

/*隐藏*/
.code_image {
  cursor: pointer;
  padding-bottom: 6px;
}

/*验证码图片样*/

/*频道*/
.ChannelContent {
  line-height: 2.0em;
  font-size: 14px;
  color: #6a6a6a;

  display: flex;
  justify-content: space-between;
}

.ChannelSContent,
.ChannelSContent p {
  line-height: 1.8em
}

.ChannelContent a {
  color: #ff9d02
}

.ChannelSContent {
  color: #FFF;
  line-height: 25px;
  height: 200px;
  overflow: hidden;
  margin-bottom: 10px;
}

.ChannelSContent a {
  color: #ff9d02
}

.ChannelSContent img,
.InfoContent img {
  max-width: 100%
}

.ChannelAlbum {
  overflow: hidden;
}

/*信息*/
.InfoTitle {
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  padding: 5px 0px
}

.InfoTitle h1 {
  font-size: 28px;
  line-height: 1.5em;
  font-weight: normal;
  color: #444;
}

.InfoTime {
  color: #999;
  text-align: left;
  padding: 2px 0px;
  height: 25px
}

.InfoContent,
.InfoContent p {
  line-height: 2.0em;
  font-size: 16px;
  padding: 10px 0;
  color: #6a6a6a;
}

.InfoAttachment {
  padding: 10px 0px;
  text-align: center;
  width: 81px;
  margin: 0 auto;
}

.InfoPicture {
  text-align: center;
}

.InfoPicture img {
  width: 100%;
  height: 192px;
  max-width: 100%
}

.info_from_wrap {
  padding: 0 10px;
  text-align: center;
  color: #999;
  border: 0px dashed #ccc;
  line-height: 30px;
  margin-bottom: 5px;
}

.info_from_wrap a {
  color: #999;
}

.info_from_wrap a:hover {
  color: #555;
}

.info_from_wrap2 {
  display: none;
}

#ReadLevelTip {
  font-weight: bold;
  color: red;
}

.Tag {
  text-align: left;
  font-weight: bold;
}

.Tag a {
  padding: 0 3px;
  font-weight: normal;
  text-decoration: none;
}

.info_previous_next_wrap {
  background: #F0F0F0;
  padding: 5px;
  border: 1px solid #E3E3E3;
  color: #333;
  line-height: 1.8em;
}

.Next {
  display: inline-block;
  float: right;
  padding-right: 50px
}

.Previous {
  display: inline-block;
  padding-left: 50px
}

/*==========@@元件 结束@@==========*/

/*==========@@模块  始@@==========*/
/*主体左侧样式*/
.left_title {
  height: 39px;
  line-height: 39px;
  border-bottom: 1px solid #01673A;
}

.left_title h2 {
  font-size: 16px;
  color: #01673A;
}

.left_body {
  overflow: hidden;
  zoom: 1;
  color: #01673A;
  padding: 10px 10px 5px;
  border-top: 0;
  border-bottom: 0px
}

.left_bottom {
  height: 15px;
  margin-bottom: 5px;
}

/*样式1*/
.left_title1 {
  text-align: center;
  overflow: hidden;
  margin-bottom: 25px;
}

.left_title1 p {
  color: #888;
  font-size: 14px;
}

.left_title1 h2 a {
  line-height: 40px;
  font-size: 30px;
  font-weight: normal;
  color: #000;
}

.left_title1 h2.ChannelName {
  margin-top: 198px;
}

.left_title1 i {
  display: block;
  width: 40px;
  height: 2px;
  background: #2b2b2b;
  margin: 0 auto;
  margin-top: 10px;
}

.left_body1 {
  overflow: hidden;
  zoom: 1; 
  box-sizing: border-box;
  padding: 0 7.8%;
  padding-top: 20px;
  padding-bottom: 30px;
}

.left_body1 .ChannelContent { 
  text-align: center;
  color: #888;
  font-size: 14px;
}

.left_body1 .ChannelPicture {
  float: left;
  overflow: hidden;
}

.left_body1 .More {
  width: 130px;
  height: 40px;
  margin: 0 auto;
  text-align: center;
  border: 1px solid #ccc;
  line-height: 40px;
  margin-top: 40px;
  transition: 0.5s;
}

.left_body1 .More:hover {
  background: #333;
  color: #FFF;
}

.left_bottom1 {
  width: 195px;
  height: 52px;
  background: #389979;
  border-radius: 4px;
  font-family: Microsoft YaHei;
  font-weight: bold;
  font-size: 16px;
  color: #FFFFFF;
  line-height: 52px;
  text-align: center;
  margin: 0 auto;
  margin-top: 60px;
}

/*主体右侧*/
/*样式1*/
.right_body { 
  overflow: hidden;
  zoom: 1;
  border-top: 0;
  border-bottom: 0;
}
.right_title {}

.right_title h2 {
  font-size: 26px;
  font-weight: normal;
  text-align: center;
  padding: 15px 0;
  color: #333;
}

.right_title h2 img {
  margin: 0 10px;
  display: none;
}


.right_bottom {}

/*==========@@模块  结束@@==========*/

/*==========@@频道布局  始@@==========*/
/*模型body*/
.body_index,
.body_article,
.body_download,
.body_picture,
.body_product,
.body_single,
.body_video,
.body_job,
.body_feedback,
.body_guestbook {}

.index,
.single,
.article,
.picture,
.download,
.video,
.product,
.job,
.guestbook,
.feedback {
  width: 80%;
  margin: 5px auto;
}

#logo,
#banner,
#announcement,
#link,
#copyright,
#bottom,
#floor_1,
#floor_2,
#floor_3,
#floor_4,
#floor_5 {
  /* width: 80%; */
  margin: 0 auto;
  overflow: hidden;
  border: 0px dashed red;
}

#left {
  float: left;
  width: 250px;
}

#right {
  float: left;
  width: 100%;
  padding: 40px 0;
}

/*===首页 ===*/

#mobile-head{
  display: none;
}
.mobile_menu{
  display: none;
}
.banner_mb{
  display: none;
}

#floor_1_main {
  overflow: hidden;
  background: #F5F5F5;
  width: 100%;
}

#floor_1 {
  padding: 0px 0px;
}

.contentHead{
  box-sizing: border-box;
  padding-left: 7.8%;
  padding-right: 7.8%;
  padding-top: 50px;
  display: flex;
  justify-content: space-between;
}
.zhuyao{ 
  font-family: Microsoft YaHei;
  font-weight: bold;
  font-size: 18px;
  color: #000000; 
}
.ciyao{
  display: flex; 
  font-family: Microsoft YaHei;
  font-weight: bold;
  font-size: 16px;
  color: #000000; 
}
.right-item{
  padding-bottom: 25px;
}
#floor_1 .right-current{ 
  font-family: Microsoft YaHei;
  font-weight: bold;
  font-size: 16px;
  border-bottom: 3px solid #389979;
  color: #389979; 
}
#floor_2 .right-current{ 
  font-family: Microsoft YaHei;
  font-weight: bold;
  font-size: 16px;
  border-bottom: 3px solid #389979;
  color: #389979; 
}
.ciyao-right{
  margin-left: 33px;
}



#floor_2_main {
  overflow: hidden;
  background: #F5F5F5;
}

#floor_2 {
  background: #F5F5F5;
}

#floor_3_main {
  margin: 45px 0;
  overflow: hidden;
  background: #f5f5f4;
}

#floor_3_main .ChannelPicture {
  float: left;
  display: block;
  width: 50%;
  height: 688px;
  overflow: hidden;
}

#floor_3 {
  float: left;
  width: 50%;
  height: 688px;
}

#floor_4_main {
  padding: 45px 0;
  background: #FFF;
}

#floor_5_main {
  padding: 45px 0;
  background: #FFF;
}

/*===首页 结束===*/

/*===产品模型 ===*/
.product .info_product_detail_wrap {
  line-height: 2.2em;
}

.product .info_product_detail_wrap b {
  color: #626262;
  font-weight: bold;
}

.product .info_product_detail_wrap table.detail_table {
  width: 100%;
}

.product .info_product_detail_wrap table.detail_table th {
  width: 200px;
}

.product .ProductDescription {
  height: 40px;
  color: 01673 A;
  margin-top: 10px;
  padding-left: 35px;
  line-height: 40px;
  font-size: 16px;
  font-weight: bold;
  display: none;
}

.product .info_product_detail_wrap img {
  width: 216px;
  height: 162px;
  float: left;
  text-align: left;
  margin-right: 10px;
}

.product .InfoTitle {
  font-size: 16px;
  font-weight: bold;
  text-align: left;
  padding: 10px 0px;
}

.product .f2 {
  padding: 5px 0px
}

.product .f1 {
  padding: 5px 0px
}

.product .InfoHit {
  padding: 5px 0px;
  font-weight: bold;
  color: #990000
}

.product .InfoTime {
  padding: 5px 0px;
}

/*===产品模型 结束===*/

/*===招聘频道  ===*/
.job {}

.joblist {}

.joblist li {
  overflow: hidden;
}

table.job_table {
  margin: 8px 0px;
  padding: 0px;
  text-align: center;
  width: 100%;
  border-collapse: collapse;
}

table.job_table td {
  padding: 8px 5px;
  border: 1px solid #DADBD6;
}

table.job_table .Requirement {
  text-align: left;
  padding: 8px 5px;
  line-height: 1.5em;
}

table.job_table th {
  color: #333;
  font-weight: bold;
  text-align: center;
  border: 1px solid #DADBD6;
}

table.job_table .t1 {
  font-weight: bold;
  padding: 5px 0;
  width: 20%;
}

table.job_table .t2 {
  text-align: left;
  width: 25%;
}

table.job_table .t3 {
  font-weight: bold;
  width: 25%;
}

table.job_table .t4 {
  text-align: left;
  width: 25%;
}

table.job_table .operation {
  text-align: center;
  margin: 0 auto;
}

/*应聘*/
table.resume_table {
  margin: 3px;
  text-align: center;
  width: 97%;
  border-collapse: collapse;
}

table.resume_table th {
  font-weight: bold;
  text-align: center;
  width: 100px;
}

table.resume_table td {
  text-align: left;
}

table.resume_table .operation {
  text-align: center;
}

table.resume_table #Detail {
  height: 200px;
}

/*===招聘频道  结束===*/

/*===留言频道  ===*/
.guestbook {}

.guestbooklist {}

.guestbooklist li {
  padding: 10px;
  border: 1px solid #CCC;
  margin-bottom: 10px;
}

.MessageTitle {
  color: #227BAD;
  line-height: 1.5em;
  font-weight: bold;
}

.MessageContent {
  padding: 5px;
  margin-bottom: 10px;
}

table.guestbook_table {
  width: 98%;
}

table.guestbook_table th {
  width: 100px;
  text-align: left
}

table.guestbook_table td {
  text-align: left
}

table.guestbook_table .operation {
  text-align: center
}

/*管理员回*/
.answer_wrap {
  padding: 5px;
  border-top: 1px dashed #CCC;
  line-height: 1.5em
}

.answer_title {}

.answer_body {}

.Administrator {
  text-align: right;
}

.Reply {
  text-align: right;
}

.AnswerTime {
  color: #999
}

/*留言表单*/
.message_title {
  height: 40px;
  padding-left: 35px;
  line-height: 40px;
  font-size: 16px;
  color: #333;
  font-weight: bold;
}

.message_body {
  padding-left: 10px;
  padding-right: 10px;
  color: #626262;
}

.message_bottom {}

/*===留言频道  结束===*/

/*===反馈频道 ===*/
.feedback {}

table.feedback_table {
  width: 99%;
  text-align: center;
  margin: 0 auto;
}

table.feedback_table th {
  width: 100px;
  text-align: left;
  font-weight: bold;
}

table.feedback_table td {
  text-align: left;
}

table.feedback_table .operation {
  text-align: center
}

/*===反馈频道 结束===*/
/*==========@@频道布局  结束@@==========*/


/*==========@@公共板块  始@@==========*/
/* 顶部 */
#top_main {
  height: 40px;
  background: #f0f0f0;
  border-bottom: 0px solid #ddd;
  width: 100%;
}

#top {
  height: 40px;
  line-height: 40px;
  text-align: right;
  width: 100%;
  display: flex;
  justify-content: space-between;
}

#top_1 {
  float: left;
  text-align: left;
  margin-left: 7.8%;
  display: flex;
}

.top_title{ 
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 16px;
  color: #4D4D4D;
  margin-right: 42px; 
}

#top_2 {
  float: right;
  text-align: right; 
  margin-right: 7.8%;
}

#top_2 .top_2_right{
  display: flex;
}
#top_2 .top_2_right .top_2_right_tel{ 
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 16px;
  color: #4D4D4D;
  line-height: 40px;
  margin-right: 16px;
}
#top_2 .top_2_right .top_2_right_num{ 
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 16px;
  color: #000000;
  line-height: 40px;
  display: flex;
  align-items: center;
}

#top .MobileEdition {
  font-weight: bold;
  color: red;
}

#top a {
  color: #666;
}

#top a:hover {
  color: #000;
  text-decoration: none
}

/*Logo*/
#logo_main {
  background: #FFF;
  width: 100%;
}

#logo {
  overflow: initial;
  width: 100%;
}

#logo:after {
  content: "";
  display: block;
  height: 0;
  clear: both;
}

#logo .WebLogo {
  float: left;
  width: 12.3%;
  margin-left: 7.8%;
  margin-right: 2.8%;
}

#logo .WebLogo img { 
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

#logo .webInput{ 
  width: 41%;
  height: 45px; 
  background: #FFFFFF;
  border-radius: 4px;
  border: 1px solid #389979; 
  display: flex;
  align-items: center;
}

#logo .webInput input{
  width: 100%;
  height: 100%;
  padding-left: 16px; 
}

#logo .webInput  input::placeholder {
  width: 236px;
  height: 16px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 16px;
  color: #999999;
  line-height: 12px;
}

.inputBtn{
  width: 7.5%;
  height: 43px;
  background: #389979;
  border-radius: 4px;
  position: absolute;  
  left: 56.3%;
  z-index: 999;
  text-align: center;
  cursor: pointer;
}

.inputBtn span{
  width: 50px;
  font-family: Microsoft YaHei;
  font-weight: bold;
  font-size: 16px;
  color: #FFFFFF;
  line-height: 43px;
}

.webIcon {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.webIcon img{
  width: 28px;
  height: 28px;
}
.webIcon a{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.top-num{
  width: 5px;
  height: 12px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 16px;
  color: #E20303;
  line-height: 12px;
  position: absolute;
  z-index: 999;
  top: 1px;
  right: 3px;
}
.webIcon .iconName{ 
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 14px;
  color: #000000;
  line-height: 12px;
  margin-top: 5px;
}

/*导航*/
/* #navigation_main {
  background: #ff7e46;
} */

#navigation {
  box-sizing: border-box;
  padding-left: 7.8%;
  background-color: #f0f0f0;
  margin-top: 40px;
}

#navigation ul.navigationlist {
  height: 60px;
  width: 100%;
  background-color: #f0f0f0;
}


#navigation .sidebar {
  display: none;
}

/* #navigation ul.navigationlist:after {
  content: "";
  display: block;
  height: 0;
  clear: both;
} */

#navigation ul.navigationlist li {
  float: left;
  position: relative;
  text-align: center;
  height: 60px;
  border-radius: 4px;
}

#navigation ul.navigationlist li a {
  display: inline-block;
  height: 60px;
  line-height: 60px;
  font-family: Microsoft YaHei;
  font-weight: bold;
  font-size: 16px;
  color: #000000;
  box-sizing: content-box;
  padding-left: 35px;
  padding-right: 35px;
  position: relative;
}

#navigation ul.navigationlist .current {
  background: #389979;
  font-family: Microsoft YaHei;
  font-weight: bold;
  font-size: 16px;
  color: #FFFFFF;
}
#navigation ul.navigationlist .choenItem {
  font-family: Microsoft YaHei;
  font-weight: bold;
  font-size: 15px;
  color: #389979;
}

.line{
  width: calc(100% - 70px);
  height: 3px;
  background-color: #389979;
  position: absolute;
  top: 57px;
  left: 35px;
}

/*Js幻灯片样*/
#banner_main {
  position: relative;
  border: 0px solid blue;
}

.banner {
  /* border: 4px solid red; */
  margin: 0 auto;
  overflow: hidden;
  width: 100%; 
  height: 582px;
  /* margin-top: 22px; */
}

.bannerlist {}

.bannerlist li {
  text-align: center;
  border: 0px dashed red;
  overflow: hidden;
  display: block;
  width: 100%;
}

.bannerlist li img {
  margin: 0 auto;
  display: block;
  width: 100%;
}

#banner_main .hd {
  width: 100%;
  position: relative;
  bottom: 35px;
  left: 0;
  height: 0px;
  line-height: 5px;
  text-align: center;
  border: 0px solid red;
}

#banner_main .hd ul li {
  cursor: pointer;
  display: inline-block;
  *display: inline;
  zoom: 1;
  width: 15px;
  height: 6px;
  background: #fff;
  margin-right: 15px;
  overflow: hidden;
  font-size: 0px;
}

#banner_main .hd ul li.on {
  background: #2b2b2b;
}
 
 
/*公共百度地图*/
#Map {
  overflow: hidden;
  width: 100%;
}

#Map .MapInfo {
  float: left;
  border: 1px dashed #ccc;
  padding: 8px;
}

#Map .MapInfo #MapContainer {
  width: 870px;
  height: 380px;
}

#Map .ContactInfo {
  width: 300px;
  float: right;
  line-height: 2.7em;
}

#Map .ContactInfo .Company {
  font-size: 24px;
  margin-bottom: 8px;
}

#Map .ContactInfo img {
  width: 18px;
  vertical-align: middle;
  margin-right: 8px;
}

/*订购*/
.order {
  margin: 0px auto
}

.order .WantOrder h1 {
  border-bottom: 1px dotted #999999;
  padding: 5px 0px;
}

.order .f1 {
  float: right;
  color: red;
}

table.order_table {
  width: 98%;
}

table.order_table th {
  width: 100px;
  text-align: left;
}

table.order_table td {
  text-align: left
}

table.order_table .operation {
  text-align: center
}

/* 友情链接 */
#link_main {
  padding: 15px 0;
  background: #fff;
  display: none;
}

#link {
  padding: 0;
  border: 1px solid #D6D6D6;
}

.link_title {
  line-height: 59px;
  height: 59px;
  color: #fff;
}

.link_title h2 {
  font-size: 24px;
  color: #333;
  font-weight: normal;
  text-indent: 15px;
}

.link_body {
  color: #000;
  border-top: 0px;
  border-bottom: 0px;
}

.link_bottom {}

/*图片链接列表*/
.linkpiclist {
  overflow: auto;
  zoom: 1;
}

.linkpiclist li {
  float: left;
  padding: 1px 5px;
  text-align: center;
  width: 112px;
}

.linkpiclist li img {
  width: 86px;
  height: 30px;
  padding: 2px;
  border: 1px solid #eee;
}

.linkpiclist li a:hover img {
  border: 1px solid #c11b33;
}

/*文字链接列表*/
.linktextlist {
  overflow: hidden;
  zoom: 1;
  padding: 8px 0 8px 0;
}

.linktextlist li {
  float: left;
  text-align: center;
  padding: 1px 15px;
  overflow: hidden;
  white-space: nowrap;
}

.linktextlist li a {
  line-height: 22px;
  color: #666;
}

.linktextlist li a:hover {
  line-height: 22px;
  color: #c11b33;
}

/*底部区域*/
#bottom_main {
  background-color: #f3f3f3;
  padding: 40px 0;
  color: #696969;
}

#bottom {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

#bottom_1 {
  float: left;
  width: 70%;
}

.bottom_navigation {
  overflow: hidden;
  float: left;
}

.bottom_navigation li {
  float: left;
  margin: 0 1rem;
  overflow: hidden;
}

.bottom_navigation li a {
  display: block;
  text-align: left;
  font-size: 18px;
  margin-bottom: 10px;
  color: #000;
}

.bottom_navigation li a:hover {
  color: #666;
}

.bottom_navigation .subnavigationlist1 li {
  float: none;
  padding: 0;
  line-height: 28px;
  display: block;
  margin: 0;
}

.bottom_navigation .subnavigationlist1 li a {
  color: #444;
  display: block;
  line-height: 30px;
  font-weight: normal;
  padding: 0;
  margin: 0;
  font-size: 13px;
  text-align: left;
}

.bottom_navigation .subnavigationlist1 li a:hover {
  color: #666;
}

#bottom_2 {
  float: right;
  width: 30%;
}

#bottom_2 .WeChat img {
  float: left;
  width: 35%;
  padding: 20px 30px 0 0;
}

#bottom_2 .bdsharebuttonbox .LShare {
  display: block;
  line-height: 24px;
  height: 24px;
  cursor: pointer;
  margin: 6px 6px 6px 0;
  font-size: 16px;
  color: #f0f0f0;
}

.bdshare-button-style0-24 {
  padding-top: 30px;
}

/* 版权信息 */
#copyright_main {
  color: #999;
  background-color: #FFF;
  width: 100%;
}

#copyright {
  line-height: 40px;
}

#copyright a {
  color: #999;
  text-decoration: none;
}

#copyright a:hover {
  color: #666;
  text-decoration: none;
}

#copyright .bottom_info {
  text-align: center;
  padding-top: 5px;
  padding-right: 10px;
  line-height: 20px;
}

#copyright .TechnicalSupport {
  float: right;
  margin: 0
}

/*分页样式*/
.page {
  padding: 10px 0px 0px 1px;
  float: right;
  clear: both;
}

.page a,
.page span {
  float: left;
  display: block;
  border: 1px solid #D3D1D1;
  padding: 2px 5px;
  margin-left: 4px;
  line-height: 22px;
}

.page a:link,
.page a:visited {
  text-decoration: none;
}

.page a:hover {
  background: #2b2b2b;
  color: #FFF;
}

.page .current {
  background: #2b2b2b;
  color: #FFF;
}

.page #total {
  color: red
}

/*会员*/
/*会员登录*/
table.login_table {
  width: 40%;
  text-align: center;
  margin: 0 auto;
}

table.login_table th {
  width: 100px;
  text-align: left;
  font-weight: bold;
}

table.login_table td {
  text-align: left;
}

table.login_table .operation {
  text-align: center
}

table.login_table .quick_login td {
  text-align: left;
  padding: 10px 0;
}

table.login_table .quick_login td img {
  margin-right: 8px;
  float: left;
}

/*会员注册*/
table.reg_table {
  width: 40%;
  text-align: center;
  margin: 0 auto;
}

table.reg_table th {
  width: 140px;
  text-align: left;
  font-weight: bold;
}

table.reg_table td {
  text-align: left;
}

table.reg_table .operation {
  text-align: center
}

table.reg_table .MemberCode {
  text-align: left;
  width: 70px;
}

table.reg_table #SmsCode {
  width: 50px;
}

/*忘记密码 第一*/
table.forget_table1 {
  width: 40%;
  text-align: center;
  margin: 0 auto;
}

table.forget_table1 th {
  width: 100px;
  text-align: left;
  font-weight: bold;
}

table.forget_table1 td {
  text-align: left;
}

table.forget_table1 .operation {
  text-align: center
}

/*忘记密码 第二*/
table.forget_table2 {
  width: 40%;
  text-align: center;
  margin: 0 auto;
}

table.forget_table2 th {
  width: 100px;
  text-align: left;
  font-weight: bold;
}

table.forget_table2 td {
  text-align: left
}

table.forget_table2 .operation {
  text-align: center
}

table.forget_table2 #SmsCode {
  width: 60px;
}

table.forget_table2 .PasswordQuestion,
table.forget_table2 .MemberMobile,
table.forget_table2 .FindPwdWay {
  padding: 3px 0;
}

/*网站地图列表*/
.maplist {}

.maplist li {
  padding: 1px;
}

.maplist li a {
  background: #d1e8fc;
  line-height: 25px;
  display: block;
  padding: 0 20px;
  border: 0px solid #A6CC93;
}

.maplist li a:hover {
  text-decoration: none;
  background: #FFF;
}

.maplist .depth1 {
  font-weight: bold;
  text-indent: 0px;
  font-weight: bold
}

.maplist .depth2 {
  text-indent: 2em
}

.maplist .depth3 {
  text-indent: 4em
}

.maplist .depth4 {
  text-indent: 6em
}

.maplist .depth5 {
  text-indent: 8em
}

.maplist .depth6 {
  text-indent: 10em
}

/*==========@@公共板块  结束@@==========*/


/*==========@@通用列表 始@@==========*/
/*文字列表*/
.textlist {}

.textlist li {
  line-height: 28px;
  height: 28px;
  text-indent: 8px;
  background: url(../images/textlist.gif) no-repeat 0 center;
  overflow: hidden;
  width: 100%;
  /*解决ie6bug*/
}

.textlist li a {}

.textlist li .InfoTime {
  float: right;
}

/*文字列表1*/
.textlist1 {
  overflow: hidden;
  width: 90%;
  margin: 20px auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.textlist1 li {
  float: left;
  width: 17%;
}

.textlist1 li a {
  display: block;
  float: left;
  width: 100%;
  height: 40px;
  margin: 0 25px;
  background: #FFF;
  color: #666;
  text-align: center;
  line-height: 40px;
  transition: 0.5s;
}

.textlist1 li a:hover {
  background: #2b2b2b;
  color: #FFF;
}

/*带缩略图文字列表*/
.thumblist {
  width: 100%;
  margin: 0 auto;
}

.thumblist li {
  overflow: hidden;
  padding: 20px 0;
  border-top: 1px solid #eee;
}

.thumblist li:first-child {
  border: 0;
}

.thumblist li .InfoPicture {
  position: relative;
  float: left;
  width: 22%;
  height: 160px;
  text-align: center;
}

.thumblist li .InfoPicture img {
  height: 100%;
  width: 100%;
  /* width: auto; */
}

.thumblist li .info_wrap {
  position: relative;
  float: right;
  width: 60%;
  height: 140px;
  padding-right: 15%;
  margin: 10px 0;
}

.thumblist li .InfoTitle {
  display: block;
  font-size: 18px;
  padding: 0 0 10px;
  color: #555;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.thumblist li p {
  font-size: 13px;
  color: #6a6a6a;
  line-height: 22px;
}

.thumblist li .InfoTime {
  position: absolute;
  display: block;
  left: 0;
  bottom: 0;
  text-align: left;
  padding: 0;
  font-size: 18px;
  color: #c8c8c8;
}

.thumblist li .more {
  position: absolute;
  width: 120px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  border-left: 1px solid #bcbcbc;
  font-size: 16px;
  color: #bcbcbc;
  transition-property: color;
  transition-duration: 1s;
  transition-timing-function: ease-in;
}

.thumblist li .info_wrap .more:hover {
  color: #c80505;
}

/*带缩略图文字列表2*/
.thumblist2 {
  overflow: hidden;
}

.thumblist2 li {
  width: 50%;
  height: 120px;
  overflow: hidden;
  margin: 10px 0;
  -webkit-transition-duration: .5s;
  transition-duration: .5s;
}

.thumblist2 li.n0 {
  float: left;
}

.thumblist2 li.n1 {
  float: right;
}

.thumblist2 li a {
  display: block;
  position: relative;
}

.thumblist2 li a:before {
  content: "";
  display: block;
  height: 0;
  clear: both;
}

.thumblist2 li a .InfoWrap {
  float: right;
  width: 68%;
}

.thumblist2 li a .InfoTime {
  position: absolute;
  left: 0;
  top: 0;
  width: 28%;
  height: 106px;
  padding: 1rem 0 0;
  background-color: #FFF;
  z-index: 1;
  text-align: center;
  -webkit-transition-duration: .5s;
  transition-duration: .5s;
}

.thumblist2 li a .InfoTime:before {
  content: "";
  display: block;
  position: absolute;
  height: 80px;
  width: 1px;
  background: #eee;
  top: 50%;
  margin-top: -40px;
  right: 0;
}

.thumblist2 li a .InfoTime .d {
  font-size: 60px;
}

.thumblist2 li a .InfoPicture {
  position: absolute;
  left: 0;
  top: 120px;
  width: 28%;
  height: 120px;
  -webkit-transition-duration: .5s;
  transition-duration: .5s;
}

.thumblist2 li img {
  display: block;
  width: 100%;
}

.thumblist2 li a .InfoWrap span {
  font-size: 17px;
  color: #575757;
  display: block;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  text-align: left;
  padding: 22px 0 13px 0;
  -webkit-transition-duration: .5s;
  transition-duration: .5s;
}

.thumblist2 li a .InfoWrap p {
  font-style: 13px;
  color: #999;
  line-height: 1.7em;
  -webkit-transition-duration: .5s;
  transition-duration: .5s;
}

.thumblist2 li:hover {
  box-shadow: 0 2px 15px 0 rgba(0, 0, 0, .1);
}

.thumblist2 li:hover .InfoTime {
  top: -120px;
}

.thumblist2 li:hover .InfoPicture {
  top: 0;
  z-index: 9;
}

.thumblist2 li:hover .InfoWrap span {
  padding: 25px 0 5px;
}

/*橱窗列表*/
.gridlist {
  width: 100%;
  margin-top: 5px;
}

.gridlist:after {
  content: "";
  display: block;
  height: 0;
  clear: both;
}

.gridlist li {
  float: left;
  width: 25%;
}

.gridlist li a {
  display: block;
  padding: 10px;
  -webkit-transition-duration: .5s;
  transition-duration: .5s;
}

.gridlist li .InfoPicture {
  background: #eee;
}

.gridlist li img {
  display: block;
  width: 100%;
}

.gridlist li .InfoTitle {
  text-align: center;
  padding: 10px;
  font-weight: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gridlist li a:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, .2);
}

/*橱窗列表1*/

.gridlist1 {
  overflow: hidden;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.gridlist1 li {
  position: relative;
  width: 15.55%;
  text-align: center;
  background: #FFFFFF;
  border-radius: 4px;
  padding-bottom: 2px;
  border: 1px solid #fff;
}
.gridlist1 li:nth-child(6n) {
  margin-right: 0px; 
}
.gridlist1 li .item-icons {
  display: flex;
  justify-content: end;  
  margin-top: 5px;
  font-size: 22px;
}
.gridlist1 li .item-icons img {
  width: 24px;
  height: 21px;
}
.gridlist1 li .item-icons img:first-child {
  margin-right: 20px;
}
.gridlist1 li .item-icons img:last-child {
  margin-right: 20px;
}
.gridlist1 li .thumb {
  width: 100%;
  height: 147px;
  margin-top: 40px;
}
.gridlist1 li .item-button {
  width: 100%;
  height: 46px;
  background: white;
  font-family: Microsoft YaHei;
  font-weight: bold;
  font-size: 16px;
  color: #FFFFFF;
  text-align: center;
  line-height: 46px;
  position: absolute;
  margin-top: 6px;
  display: none;
}
.gridlist1 li:hover   {
  border: 1px solid #389979;
}
.gridlist1 li:hover .item-button {
  background: #389979; 
  position: absolute;
  z-index: 9999;
  color: #FFFFFF; 
}
.gridlist1 li:hover .add_cart{
  display: block;
}
.gridlist1 li .item-title {
  display: flex;
  align-items: center;
  margin-top: 5px;
  min-height: 24px;
}
.gridlist1 li .item-title .item-dot{
  width: 6px;
  height: 6px;
  background: #E3E3E3;
  border-radius: 50%;
  margin-left: 11%;
  margin-right: 5%;
}
.gridlist1 li .item-title .item-name{
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 14px;
  color: #AEAEAE;
}
.gridlist1 li .item-desc{
  margin-top: 6px;
  width: 80%;
  /* height: 60px; */
  text-align: left;
  font-family: Microsoft YaHei;
  font-weight: bold;
  font-size: 15px;
  color: #000000;
  line-height: 20px;
  margin-left: 11%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis; 
}
.gridlist1 li:hover .item-desc{  
  white-space: wrap;
  overflow: hidden;      
  text-overflow: ellipsis;        
  display:-webkit-box;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:3; 
}
.gridlist1 li:hover .item-price{  
  /*display: none;*/
}
.gridlist1 li .item-price{
  height: 23px;
  font-family: Microsoft YaHei;
  font-weight: bold;
  font-size: 22px;
  color: #000000;
  line-height: 20px;
  text-align: left;
  margin-left: 11%;
  margin-top: 8px;
  margin-bottom: 10px;
}

.gridlist1-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 16px
}

.gridlist1-bottom .gridlist1-bottom-left{
  width: 49.5%;
  height: 260px;
  background: #FFFFFF;
  border-radius: 4px;
  border: 1px solid #E3E3E3;
  display: flex;
  align-items: center;
}
.gridlist1-bottom .gridlist1-bottom-left img{
  width: 39.6%;
  height: 210px;
  margin-left: 28px;
}

.gridlist1-bottom-left-right{
  display: flex;
  flex-direction: column;
  margin-left: 45px;
}

.gridlist1-bottom-left-right-top{
  font-family: Microsoft YaHei;
  font-weight: bold;
  font-size: 24px;
  color: #000000;
}
.gridlist1-bottom-left-right-bottom{
  width: 195px;
  height: 52px;
  background: #389979;
  border-radius: 4px;
  font-family: Microsoft YaHei;
  font-weight: bold;
  font-size: 16px;
  color: #FFFFFF;
  text-align: center;
  line-height: 52px;
  margin-top: 16px;
}


.gridlist2 {
  overflow: hidden;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.gridlist2 li {
  width: 15.7%; 
  overflow: hidden;
}
.gridlist2 li:nth-child(6n) {
  margin-right: 0px;  
}

.gridlist2 li img{
  max-width: 100%; 
  height: 377px;   
  object-fit: cover;
}


#floor-boke{
  margin: 0;
  padding: 0;
  background: #F5F5F5;
}
#floor-boke .right-item{
  padding-bottom: 0px;
  display: flex;
  align-items: center;
}
#floor-boke .right-current{ 
  font-family: Microsoft YaHei;
  font-weight: bold;
  font-size: 16px;
  color: #389979; 
}
#floor-boke .contentHead{
  box-sizing: border-box;
  padding-left: 7.8%;
  padding-right: 7.8%;
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
}
#floor-boke .gridlist3{
  overflow: hidden;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 20px;
}

.gridlist3 li {
  /* margin-right: 13px;  */
  width: 19.1%; 
  overflow: hidden;
}
.gridlist3 li:nth-child(5n) {
  margin-right: 0px;  
}

.gridlist3 li img{
  max-width: 100%; 
  height: 377px;   
  object-fit: cover;
}
.gridlist3 li .boke-name{ 
  font-family: Microsoft YaHei;
  font-weight: bold;
  font-size: 15px;
  color: #000000;
  line-height: 20px;
  margin-top: 20px;
}
.gridlist3 li .boke-date{ 
  margin-top: 33px;
  margin-bottom: 43px; 
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 14px;
  color: #AEAEAE;
  line-height: 12px;
}

#floor-ready{
  margin: 0;
  padding: 0;
  background: #F5F5F5;
}

#floor-ready .contentHead{
  box-sizing: border-box;
  padding-left: 7.8%;
  padding-right: 7.8%;
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
}

#floor-ready .right-current{ 
  font-family: Microsoft YaHei;
  font-weight: bold;
  font-size: 16px;
  border-bottom: 3px solid #389979;
  color: #389979; 
}



.gridlist-pl-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  box-sizing: border-box;
  padding-left: 7.8%;
  padding-right: 7.8%;
}

.gridlist-pl-bottom .gridlist-pl-bottom-left{
  width: 49.5%;
  height: 356px;
  background: #FFFFFF;
  border-radius: 4px;
  border: 1px solid #E3E3E3;
  display: flex; 
  flex-direction: column;
}
.gridlist-pl-bottom .gridlist-pl-bottom-left .pl-top{
  display: flex;
  align-items: center;
  margin-top: 35px;
  margin-left: 5.5%;
}
.gridlist-pl-bottom .gridlist-pl-bottom-left .pl-top .pl-top-circle{
  width: 58px;
  height: 58px; 
  background: #FFFFFF;
  border-radius: 50%;
  border: 1px solid #389979;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pl-top-circle img{
  width: 80%;
  margin: 0 auto;
}
.gridlist-pl-bottom .gridlist-pl-bottom-left .pl-top .pl-name{
  font-family: Microsoft YaHei;
  font-weight: bold;
  font-size: 15px;
  color: #000000;
  line-height: 20px;
  margin-left: 15px;
}
.gridlist-pl-bottom .gridlist-pl-bottom-left .pl-middle{
  width: 92%;
  min-height: 146px;
  background: #F5F5F5;
  border-radius: 4px;
  margin-top: 15px;
  margin-left: 4%;
}
.pl-middle .pl-content{
  width: 90%;
  max-height: 36px;
  font-family: Microsoft YaHei;
  font-weight: bold;
  font-size: 16px;
  margin-left: 4%;
  margin-top: 15px;
  line-height: 20px;
  overflow: hidden;
  transition: max-height 0.3s ease; /* 添加平滑过渡效果 */
}
.pl-date{
  display: flex;
  justify-content: end;
  margin-top: 15px;
  margin-right: 135px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 14px;
  color: #AEAEAE;
  line-height: 12px;
}
.pl-info{
  display: flex;
  margin-top: 15px;
  margin-right: 17px;
  justify-content: end;
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 15px;
  color: #389979;
  line-height: 20px;
  cursor: pointer; /* 鼠标悬停时显示为手型 */
}

.gridlist-pl-bottom .gridlist-pl-bottom-left .pl-bottom{
  margin-left: 5.5%;
  margin-top: 35px;
  display: flex;
  align-items: center;
}
.gridlist-pl-bottom .gridlist-pl-bottom-left .pl-bottom-left{
  width: 45px;
  height: 45px;
  background: #389979;
  border-radius: 50%;
  font-family: Microsoft YaHei;
  font-weight: bold;
  font-size: 14px;
  color: #FFFFFF;
  line-height: 45px;
  text-align: center; 
}
.pl-bottom-left img{
   border-radius: 50%;
   width: 45px;
   height: 45px;
}
.linkdet .pl-bottom{
  display: flex;
}
.pl-bottom .pl-bottom-left{
  margin-left: 2.5%;
}
.pl-bottom-right{
  margin-left: 17px;
  display: flex;
  align-items: center;
}
.pl-bottom-right-name{ 
  font-family: Microsoft YaHei;
  font-weight: bold;
  font-size: 15px;
  color: #000000;
  line-height: 20px;
}
.pl-bottom-right-b{
  display: flex; 
  align-items: center;
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 14px;
  color: #333333;
  line-height: 12px;
  margin-top: 5px;
}
.pl-bottom-right-b-txt{
  margin-right: 10px;
}


#floor-news{
  margin: 0;
  padding: 0;
  background: #F5F5F5;
}
#floor-news .right-item{
  padding-bottom: 0px;
  display: flex;
  align-items: center;
}
#floor-news .right-current{ 
  font-family: Microsoft YaHei;
  font-weight: bold;
  font-size: 16px;
  color: #389979; 
}
#floor-news .contentHead{
  box-sizing: border-box;
  padding-left: 7.8%;
  padding-right: 7.8%;
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
}
#floor-news .gridlist-news{
  overflow: hidden;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}

.gridlist-news li {
  margin-right: 13px; 
  width: 19.1%; 
  overflow: hidden;
}
.gridlist-news li:nth-child(5n) {
  margin-right: 0px;  
}

.gridlist-news li img{
  width: 100%; 
  height: 197px;   
}
.gridlist-news li .news-name{ 
  width: 265px;
  height: 14px;
  font-family: Microsoft YaHei;
  font-weight: bold;
  font-size: 15px;
  color: #000000;
  line-height: 20px;
  margin-top: 20px;
}
.gridlist-news li .news-date{ 
  margin-top: 33px;
  margin-bottom: 43px; 
  height: 14px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 14px;
  color: #AEAEAE;
  line-height: 12px;
}

#floor-icon{
  width: 100%;
  height: 237px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  padding: 0 19%;
}
.icon-time{
  display: flex;
  flex-direction: column;
  align-items: center;
}



.page-bottom{
  width: 100%;
  height: 222px;
  display: flex;
}
.bottom-left{
  height: 100%;
  width: 50%;
  background-color: #C0DDD3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.bottom-left .bottom-txt{  
  font-family: Microsoft YaHei;
  font-weight: bold;
  font-size: 24px;
  color: #000000;
  line-height: 20px;
  margin-left: 15.6%;
}

 .bottom-input{
  margin-top: 40px;
  width: 66%;
  height: 52px; 
  margin-left: 15.6%; 
}
 .bottom-input input{ 
  width: 100%;
  height: 52px;  
  padding-left: 27px; 
  /* position: relative; */
}

.bottom-input  input::placeholder { 
    font-family: Microsoft YaHei;
    font-weight: bold;
    font-size: 16px;
    color: #B9B9B9;
    line-height: 12px;
}

.bottom-btn{
  width: 195px;
  height: 54px;
  background: #389979;
  border-radius: 4px;
  z-index: 999;
  text-align: center;
  position: relative;
  left: calc(100% - 160px);
  bottom: 55px;
}

.bottom-btn span{
  width: 108px;
  height: 15px;
  font-family: Microsoft YaHei;
  font-weight: bold;
  font-size: 16px;
  color: #FFFFFF;
  line-height: 54px;
}

.bottom-right{
  width: 50%;
  height: 100%; 
}
.bottom-right img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-footer{
  width: 100%;
  height: 100px;
  background-color: #F5F5F5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  padding-left:  7.8%;
  padding-right: 12.8%;
}


.page-right{  
  border-radius: 4px;
  border: 1px solid #E3E3E3;
  width: 108px;
  height: 580px;
  margin-left: calc(100% - 86px);
  display: flex;
  flex-direction: column;
  background-color: #FFF;
  position: fixed;
  right:  0px;  
  bottom: 160px;
  z-index: 99;
  top:150px;
}
.page-phone,.page-phone2,.page-phone3,.page-phone4,.page-phone5 {
  display: flex;
  flex-direction: column;
  margin-top: 24px;
  align-items: center;
}

.whatsapp{
  font-size: 33px; 
}
 
.page-phone .phone-buy ,.phone-buy2 ,.phone-buy3 {
  width: 79%;
  height: 41px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 16px;
  color: #000000;
  margin-top: 15px;
  line-height: 24px;
  text-align: center;
} 

.page-phone3 .phone-cart{
  width: 79%;
  height: 17px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 16px;
  color: #000000;
  margin-top: 15px;
  line-height: 24px;
  text-align: center;
}
.page-phone5 .phone-address{
  width: 79%;
  height: 17px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 16px;
  color: #000000;
  margin-top: 15px;
  line-height: 24px;
  text-align: center;
}

.phone-buy3{
  /* font-size: 33px; */
  width: 90%;
}
.page-phone:hover ,.page-phone2:hover,.page-phone3:hover,.page-phone4:hover,.page-phone5:hover{
  color: #389979;
  cursor: pointer;
} 
.page-phone:hover .phone-buy,.page-phone2:hover .phone-buy2,.page-phone3:hover .phone-cart,.page-phone4:hover .phone-buy3,.page-phone5:hover .phone-cart{
  color: #389979;
  cursor: pointer;
}

.page-bottom-totop2{
   display: none;
}

.page-bottom-totop{ 
  width: 108px;
  height: 115px;
  background-color: #FFF;
  border-radius: 4px;
  margin-left: calc(100% - 86px);
  border: 1px solid #E3E3E3;  
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 15px;
  position: fixed;
  right:  0px;  
  bottom:  0px;  
  z-index: 99999;
}

.page-bottom-totop .to-top{
  width: 90%;
  height: 42px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 16px;
  color: #000000;
  line-height: 24px;
  margin-top: 10px;
  text-align: center;
}

.page-bottom-totop:hover {
  color: #389979;
  cursor: pointer;
}
.page-bottom-totop:hover .to-top{
  color: #389979;
  cursor: pointer;
}

.icon-xiangshang,.icon-kefu{
  font-size: 40px;
}

/* 产品列表 */
.pro-list{ 
  box-sizing: border-box;
  padding-top: 26px;
  padding-left: 7.8%;
  background-color: #F5F5F5;
}

.pro-list-top{
  display: flex;
  align-items: end;
}
.pro-list-name{ 
  font-family: Microsoft YaHei;
  font-weight: bold;
  font-size: 24px;
  color: #000000;
  line-height: 20px;
  margin-right: 8px;
}
.pro-list-num{ 
  font-family: Microsoft YaHei;
  font-weight: bold;
  font-size: 18px;
  color: #AEAEAE;
  line-height: 12px;
}

.mianbaoxie{
  display: flex;
  margin-top: 14px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 14px;
  line-height: 12px;
}
.mianbaoxie-home{ 
  color: #AEAEAE;
  margin-right: 5px;
}
.mianbaoxie-title{
  color: #389979;
  margin-left: 5px;
}

.pro-list-info{
  box-sizing: border-box;
  padding-top: 24px;
  padding-left: 7.8%;
  padding-right: 7.8%;
  display: flex;
  background-color: #F5F5F5;
}
.pro-list-left{
  width: 260px;
  background-color: white; 
}
.pro-cate{ 
  font-family: Microsoft YaHei;
  font-weight: bold;
  font-size: 16px;
  color: #000000;
  line-height: 20px;
  padding-top: 25px;
  margin-left: 22px;
  margin-bottom: 22px;
}
.cate-item{
  width: 235px;
  height: 45px;
  line-height: 45px;
  background: #DAF5EB;
  border-radius: 4px; 
  margin-bottom: 9px;
  margin-left: 11px;
  box-sizing: border-box;
  padding-left: 12px;
  padding-right: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cate-item span{
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 14px;
  color: #555555;
}
.cate-item-new a {
  display: flex;
  justify-content: space-between;
}
.cate-cur{
  background: #389979;
  margin-bottom: 9px;
}
.cate-cur span,.cate-cur label{
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 14px;
  color: #FFFFFF;
  line-height: 45px;
}
.cate-cur-child{ 
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 14px;
  color: #555555;
  line-height: 33px; 
  margin-left: 24px;
}
.cate-cur-child:last-child{ 
  margin-bottom: 20px;
}

.left-bottom{
  margin-top: 55px;
  width: 260px;
}
.left-bottom img{
  width: 260px;
  height: 135px;
  background: #FFFFFF;
  border-radius: 4px;
  border: 1px solid #E3E3E3;
}
.bottom-name{ 
  font-family: Microsoft YaHei;
  font-weight: bold;
  font-size: 20px;
  color: #000000;
  line-height: 20px;
  margin-bottom: 11px;
}

.bottom-title{ 
  font-family: Microsoft YaHei;
  font-weight: bold;
  font-size: 16px;
  color: #000000;
  line-height: 20px;
  margin-top: 24px;
  margin-bottom: 27px;
}
.bottom-date{ 
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 14px;
  color: #AEAEAE;
  line-height: 12px;
}


.pro-list-right{
  margin-left: 11px;
  width: 100%;
  overflow: hidden;
}
.pro-list-right .picture{
  width: 100%;
}
.pro-right-cate{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  /*justify-content: space-between;*/
}

.pro-right-item{
  width: 19.5%;
  height: 50px;
  background: #FFFFFF;
  border-radius: 4px;
  border: 1px solid #E3E3E3;
  line-height: 50px;
  text-align: center;
  margin-right: 5px;
}
.pro-right-cate .right-item-active{
  border: 1px solid #389979;
}

/* select */
.selecteds{
  display: flex;
  margin-bottom: 10px;
  margin-top: 22px;
}

.custom-select {
  margin-right: 5px;
  position: relative;
  width: 19.5%;
  /* width: 210px;   */
  height: 50px; 
  line-height: 50px; 
  background: #FFFFFF;
  border-radius: 4px;
  border: 1px solid #389979;
}
.custom-select3 {
  margin-right: 15px; 
  /* margin-left: 45px; */
  margin-top: 20px;
  position: relative;
  width: 330px;  
  height: 50px; 
  line-height: 50px; 
  background: #FFFFFF;
  border-radius: 4px;
  /* border: 1px solid #389979; */
}
.selected-item {
  border: 1px solid #ccc;
  box-sizing: border-box;
  padding: 0 12px;
  cursor: pointer;
  height: 50px; /* 设置高度 */
  line-height: 50px; /* 使文本垂直居中 */
  box-sizing: border-box; /* 确保内边距不会增加元素的总宽度和高度 */
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 14px;
  color: #555555;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.options {
  display: none;
  position: absolute;
  z-index: 9999;
  top: 100%;
  left: 0;
  right: 0;
  border: 1px solid #ccc;
  background-color: white;
  width: 19.5%;
  /* width: 210px;   */
  box-sizing: border-box; /* 确保内边距不会增加元素的总宽度 */
}
.option {
  padding: 0 10px;
  cursor: pointer;
  height: 50px; /* 设置高度 */
  line-height: 50px; /* 使文本垂直居中 */
  box-sizing: border-box; /* 确保内边距不会增加元素的总宽度和高度 */
}
.option:hover {
  background-color: #f0f0f0;
}

.custom-select2 {
  margin-right: 15px;
  position: relative;
  width: 19.5%;
  /* width: 210px;   */
  height: 50px; 
  line-height: 50px; 
  background: #FFFFFF;
  border-radius: 4px;
  border: 1px solid #389979;
}
.selected-item2 {
  border: 1px solid #ccc;
  box-sizing: border-box;
  padding: 0 24px;
  cursor: pointer;
  height: 50px; /* 设置高度 */
  line-height: 50px; /* 使文本垂直居中 */
  box-sizing: border-box; /* 确保内边距不会增加元素的总宽度和高度 */
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 14px;
  color: #555555;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.options2 {
  display: none;
  position: absolute;
  z-index: 9999;
  top: 100%;
  left: 0;
  right: 0;
  border: 1px solid #ccc;
  background-color: white;
  width: 19.5%;
  /* width: 210px;  */
  /* width: 20%;   */
  box-sizing: border-box; /* 确保内边距不会增加元素的总宽度 */
}
.option2 {
  padding: 0 10px;
  cursor: pointer;
  height: 50px; /* 设置高度 */
  line-height: 50px; /* 使文本垂直居中 */
  box-sizing: border-box; /* 确保内边距不会增加元素的总宽度和高度 */
}
.option2:hover {
  background-color: #f0f0f0;
}


/* list页面 */
.pro-list-list {
  overflow: hidden;
  width: 100%;
  display: flex;
  flex-wrap: wrap; 
}

.pro-list-list li {
  position: relative;
  width: 18.7%;
  text-align: center; 
  background: #FFFFFF;
  border-radius: 4px;
  border: 1px solid #E3E3E3;
  margin-bottom: 10px;
  padding-bottom: 2px;
  margin-right: 5px;
}
.pro-list-list li:nth-child(5n) {
  margin-right: 0px; 
}
.pro-list-list li .item-icons {
  display: flex;
  justify-content: end;  
  margin-top: 5px;
  font-size: 22px;
}
.pro-list-list li .item-icons img {
  width: 24px;
  height: 21px;
}
.pro-list-list li .item-icons img:first-child {
  margin-right: 20px;
}
.pro-list-list li .item-icons img:last-child {
  margin-right: 20px;
}
.pro-list-list li .thumb {
  width: 100%;
  height: 147px;
  margin-top: 40px;
}
.pro-list-list li .item-button {
  width: 100%;
  height: 46px;
  background: white;
  font-family: Microsoft YaHei;
  font-weight: bold;
  font-size: 16px;
  color: red;
  text-align: center;
  line-height: 46px;
}
.pro-list-list li:hover   {
  border: 1px solid #389979;
}
.pro-list-list li:hover .item-button {
  background: #389979; 
  color: #FFFFFF; 
}
.pro-list-list li:hover .add_cart{
  display: block;
}
 
.pro-list-list li .item-title {
  display: flex;
  align-items: center;
  margin-top: 5px;
}
.pro-list-list li .item-title .item-dot{
  width: 6px;
  height: 6px;
  background: #E3E3E3;
  border-radius: 50%;
  margin-left: 11%;
  margin-right: 5%;
}
.pro-list-list li .item-title .item-name{
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 14px;
  color: #AEAEAE;
  min-height: 24px;
}
.pro-list-list li .item-desc{
  margin-top: 6px;
  width: 80%;
  text-align: left;
  font-family: Microsoft YaHei;
  font-weight: bold;
  font-size: 15px;
  color: #000000;
  line-height: 20px;
  margin-left: 11%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.pro-list-list li:hover .item-desc{
  white-space: wrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display:-webkit-box;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:3;
}
.pro-list-list li:hover .item-price{
  /*display: none;*/
}
.pro-list-list li .item-price{
  height: 23px;
  font-family: Microsoft YaHei;
  font-weight: bold;
  font-size: 22px;
  color: #000000;
  line-height: 20px;
  text-align: left;
  margin-left: 11%;
  margin-top: 5px;
  margin-bottom: 10px;
}

.pro-list-list-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 16px
}

.pro-list-list-bottom .pro-list-list-bottom-left{
  width: 49.5%;
  height: 260px;
  background: #FFFFFF;
  border-radius: 4px;
  border: 1px solid #E3E3E3;
  display: flex;
  align-items: center;
}
.pro-list-list-bottom .pro-list-list-bottom-left img{
  width: 39.6%;
  height: 210px;
  margin-left: 28px;
}

.pro-list-list-bottom-left-right{
  display: flex;
  flex-direction: column;
  margin-left: 45px;
}

.pro-list-list-bottom-left-right-top{
  font-family: Microsoft YaHei;
  font-weight: bold;
  font-size: 24px;
  color: #000000;
}
.pro-list-list-bottom-left-right-bottom{
  width: 195px;
  height: 52px;
  background: #389979;
  border-radius: 4px;
  font-family: Microsoft YaHei;
  font-weight: bold;
  font-size: 16px;
  color: #FFFFFF;
  text-align: center;
  line-height: 52px;
  margin-top: 16px;
}


.page-list-bottom{
  display: flex;
  justify-content: center;
}
.page-list{
  display: flex;
  margin-top: 40px;
}
.page-number{
  width: 51px;
  height: 52px;
  border-radius: 4px;
  font-family: Microsoft YaHei;
  font-weight: bold;
  font-size: 16px;
  color: #040404;
  line-height: 52px;
  text-align: center;
}
.number-cur{
  color: #FFFFFF;
  background: #CE9805;
}

.page-list-more{
  margin-top: 40px;
  width: 195px;
  height: 52px;
  background: #389979;
  border-radius: 4px;
  font-family: Microsoft YaHei;
  font-weight: bold;
  font-size: 16px;
  color: #FFFFFF;
  line-height: 52px;
  text-align: center;
}



.pro-list-list2 {
  overflow: hidden;
  width: 100%;
  display: flex;
  flex-wrap: wrap; 
  justify-content: space-between;
}
.pro-list-list2 li {
  position: relative;
  width: 16%;
  text-align: center; 
  background: #FFFFFF;
  border-radius: 4px;
  border: 1px solid #E3E3E3;
  margin-bottom: 10px;
  padding-bottom: 2px;
}
.pro-list-list2 li .item-icons {
  display: flex;
  justify-content: end;  
  margin-top: 5px;
  font-size: 22px;
}
.pro-list-list2 li .item-icons img {
  width: 24px;
  height: 21px;
}
.pro-list-list2 li .item-icons img:first-child {
  margin-right: 20px;
}
.pro-list-list2 li .item-icons img:last-child {
  margin-right: 20px;
}
.pro-list-list2 li .thumb {
  width: 100%;
  height: 147px;
  margin-top: 40px;
}
.pro-list-list2 li .item-button {
  width: 100%;
  height: 46px;
  background: white;
  font-family: Microsoft YaHei;
  font-weight: bold;
  font-size: 16px;
  color: red;
  text-align: center;
  line-height: 46px;
}
.pro-list-list2 li .item-title {
  display: flex;
  align-items: center;
  margin-top: 5px;
}
.pro-list-list2 li .item-title .item-dot{
  width: 6px;
  height: 6px;
  background: #E3E3E3;
  border-radius: 50%;
  margin-left: 11%;
  margin-right: 5%;
}
.pro-list-list2 li .item-title .item-name{
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 14px;
  color: #AEAEAE;
  min-height: 24px;
}
.pro-list-list2 li .item-desc{ 
  margin-top: 6px;
  width: 80%;
  text-align: left;
  font-family: Microsoft YaHei;
  font-weight: bold;
  font-size: 15px;
  color: #000000;
  line-height: 20px;
  margin-left: 11%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.pro-list-list2 li:hover   {
  border: 1px solid #389979;
}
.pro-list-list2 li:hover .item-desc{
  white-space: wrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display:-webkit-box;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:3;
}
.pro-list-list2 li:hover .add_cart{
  display: block;
}
.pro-list-list2 li .item-price{
  height: 23px;
  font-family: Microsoft YaHei;
  font-weight: bold;
  font-size: 22px;
  color: #000000;
  line-height: 20px;
  text-align: left;
  margin-left: 11%;
  margin-top: 5px;
  margin-bottom: 10px;
}
.left-bottom2{
  display: none;
}

/* 详情页 */
.det-page{
  width: 100%; 
  background-color: #F5F5F5;
}
.det-title{ 
  font-family: Microsoft YaHei;
  font-weight: bold;
  font-size: 24px;
  color: #000000;
  line-height: 26px;
  padding-top: 26px;
  margin-left: 7.8%;
  width: 85%;
}

.det-mbx{
  margin-top: 10px;
  margin-left: 7.8%; 
  display: flex;
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 14px;
  color: #AEAEAE;
  line-height: 12px;
}
.det-cate{
  color:#77B8A2
}

.det-pic{ 
  margin-left: 7.8%;
  margin-right: 7.8%;
  margin-top: 30px;
  height: 762px;
  background: #FFFFFF;
  border-radius: 4px;
  border: 1px solid #E3E3E3;
  display: flex;
}

.det-pic-left{
  width: 50%;
  border-right: 1px solid #E3E3E3;
}


.det-pic-right{
  margin-top: 33px;
  margin-left: 44px;
  margin-right: 44px;
  width: 50%;
}
.pic-right-top{
  display: flex;
  justify-content: space-between;
}
.right-top-left{
  display: flex;
}
.right-top-left-item{
  display: flex;
  align-items: center;
}
.right-top-left-item-name{ 
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 16px;
  color: #555555;
  line-height: 12px;
  margin-left: 12px;
}

.right-top-right{
  display: flex;
  flex-direction: column;
}
.right-top-right-brand{ 
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 16px;
  color: #555555;
  line-height: 12px;
}
.right-top-right-cj{ 
  margin-top: 13px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 14px;
  color: #AEAEAE;
  line-height: 12px;
}
.line1{
  width: 100%;
  height: 2px;
  margin-top: 22px;
  background-color: #E3E3E3;
}

.pic-right-mid{
  display: flex;
  align-items: center;
  margin-top: 37px;
}
.dot{
  width: 6px;
  height: 6px;
  background: #13D154;
  border-radius: 50%;
  margin-right: 10px;
}
.kucun{ 
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 14px;
  color: #010101;
  line-height: 12px;
  margin-right: 20px;
}
.goodscode{ 
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 14px;
  color: #AEAEAE;
  line-height: 12px;
}
.goodsprice{ 
  margin-top: 26px;
  font-family: Microsoft YaHei;
  font-weight: bold;
  font-size: 36px;
  color: #000000;
  line-height: 20px;
}

.goodsbtns{
  display: flex;
  margin-top: 18px;
}
.goodsbuy{
  width: 32%;
  height: 53px;
  background: #389979;
  border-radius: 4px;
  margin-right: 15px; 
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.goodsbuyname{
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 14px;
  color: #FFFFFF;
  text-align: center;
  line-height: 53px;
  margin-left: 12.8%;
}
.goodsbuy img{
  margin-right: 12.8%;
  width: 19px;
  height: 21px;
}
.goodsim{
  width: 25%;
  height: 53px;
  background: #F1F1F5;
  border-radius: 4px; 
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 14px;
  color: #555555;
  line-height: 53px;
  text-align: center;
}
.line2{
  width: 100%;
  height: 2px;
  margin-top: 52px;
  background-color: #E3E3E3;
}
.goodspro{ 
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 16px;
  color: #555555;
  line-height: 12px;
  margin-top: 34px;
}
.procontent{
  display: flex;
  flex-wrap: wrap;
}
.contentitem{
  margin-top: 45px;
  width: 33%; 
  display: flex;
  flex-direction: column;
}
.itemname{ 
font-family: Microsoft YaHei;
font-weight: 400;
font-size: 14px;
color: #AEAEAE;
line-height: 12px;
}
.iteminfo{ 
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 16px;
  color: #555555;
  line-height: 12px;
  margin-top: 15px;
}

.allpro{ 
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 16px;
  color: #389979;
  line-height: 12px;
  margin-top: 45px;
}

.colors{
  display: flex; 
  align-items: center;
  margin-bottom: 3px;
}
.colors img{
  width: 40px;
  height: 40px;
  border: 1px solid lightgray;
  margin-right: 30px;
}
.colors .colorName{
  width: 80px; 
}
.colors .colorKs{ 
  width: 180px;
}

.quantity-control {
  display: flex;
  align-items: center;
}

.quantity-control button {
  width: 30px;
  height: 30px;
  background-color: lightgray;
  border: none;
}

.quantity-control .quantity {
  width: 80px;
  text-align: center;
  padding-left: 12px;
  height: 26px;
}


.det-link{
  display: flex;
  margin-top: 57px;
  margin-left: 7.8%;
}
.linkitem{
  margin-right: 55px; 
  font-family: Microsoft YaHei;
  font-weight: bold;
  font-size: 16px;
  color: #000000;
  line-height: 12px;
  padding-bottom: 19px;
}
.itemcur{
  color: #389979;
  border-bottom: 2px solid #389979;
}
.linkdet{
  margin-left: 7.8%;
  margin-right: 7.8%;
  margin-top: 26px;
  background: #fff;
  border-radius: 4px;
  border: 1px solid #E3E3E3;
}
.linkname{
  font-family: Microsoft YaHei;
  font-weight: bold;
  font-size: 24px;
  color: #000000;
  margin-top: 32px;
  margin-left: 32px;
}
.textarea{
  width: 500px; min-height: 60px; margin-top: 32px; margin-left: 32px
}
.submitRating{
  width: 200px;
  height: 50px;
  background: #389979;
  border-radius: 4px;
  margin-left: 332px; 
  margin-top: 30px;
  color: white;
  text-align: center;
  line-height: 50px;
}
.linkcontent{
  margin-top: 40px;
  margin-left: 40px;
  width: 70%; 
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 16px;
  color: #555555;
  line-height: 32px;
}

.command{ 
  margin-top: 50px;
  margin-left: 8.6%;
  margin-right: 7.8%;
}
.commandname{
  font-family: Microsoft YaHei;
  font-weight: bold;
  font-size: 16px;
  color: #000000;
  line-height: 12px;
  margin-bottom: 30px;
}

.commandlist{
  display: flex;
}


/* 会员中心 */
.hycenter{
  background-color: #F5F5F5;
}
.pro-right-top{
  font-family: Microsoft YaHei;
  font-weight: bold;
  font-size: 24px;
  color: #000000;
  line-height: 20px;
  margin-top: 15px;
  margin-left: 15px;
  margin-bottom: 22px;
}
.pro-right-info{
  display: flex;
}
.right-info-left{
  display: flex;
  flex-direction: column;
  width: 63%;
  margin-right: 10px;
}
.right-info-left2{
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-right: 10px;
}
.zuoshang{
  min-height: 168px;
  background: #FFFFFF;
  border-radius: 4px;
  border: 1px solid #E3E3E3;
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  padding: 0 24px;
  padding-bottom: 12px;
}
.zuoshang2{
  height: auto;
  min-height: 168px;
  background: #FFFFFF;
  border-radius: 4px;
  border: 1px solid #E3E3E3;
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  padding: 0 24px;
  padding-bottom: 12px;
}
.zuoshangnew{
  display: flex;
  justify-content: space-between;
  margin-top: 44px;
}
.newleft{ 
  font-family: Microsoft YaHei;
  font-weight: bold;
  font-size: 16px;
  color: #000000;
  line-height: 20px;
}
.newright{  
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 14px;
  /* color: red; */
  color: #389979;
  line-height: 12px;
}
.zuoshanginfo{ 
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 14px;
  color: #555555;
  line-height: 12px;
  margin-top: 17px;
}
.zuoshangline{
  width: 100%;
  height: 1px;
  margin-top: 28px;
  background-color: #DDDDDD;
}

.right-info-right{
  display: flex;
  flex-direction: column;
  width: 36.5%;
}
.youshang{
  height: 345px;
  background: #F5F5F5;
  border-radius: 4px;
  border: 1px solid #E3E3E3;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.youshangitem{
  width: 49.5%;
  height: 49%;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.youshangitem img{
  width: 29px;
  height: 30px;
  margin-bottom: 24px;
}
.youshangitemname{
  text-align: center; 
}

.youxia{
  margin-top: 12px;
  height: 345px;
  background: #389979;
  border-radius: 4px;
  border: 1px solid #389979;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.youxia img{
  width: 54px;
  height: 48px;
}
.youxiading{ 
  font-family: Microsoft YaHei;
  font-weight: bold;
  font-size: 18px;
  color: #FFFFFF;
  line-height: 12px;
  margin-top: 29px;
  margin-bottom: 52px;
}
.youxianoding{ 
  width: 55%;
  height: 60px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 16px;
  color: #FFFFFF;
  line-height: 24px;
  text-align: center;
}

.cur-children{
  display: none;
}

.single{
  background-color: #f5f5f5;
  width: 100%;
  box-sizing: border-box;
  padding-left: 7.8%;
  padding-right: 7.8%;
}

.download{
  width: 100%;
  box-sizing: border-box;
  padding-left: 7.8%;
  padding-right: 7.8%;
  padding-top: 33px;
  background-color: #f5f5f5;
}

/*==========@@通用列表  结束@@==========*/

.compare{
  margin-left: 7.8%;
  margin-right: 7.8%;
  margin-top: 30px;
  margin-bottom: 10px;
  padding: 0 auto;
}
.compare ul li{
  width: 33%;
  border: 1px solid lightgray;
  overflow: hidden;
}
.compare .ulHeader{
  display: flex;
}
.compare .ulHeader li{
  height: 200px;
}
.compare .ulHeader li img{
  width: 220px;
}
.compare .ulHeader li:first-child{ 
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.compare .ulHeader li:not(:first-child) { 
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.propertys{
  display: flex;
}
.propertys li{
  height: 40px;
  text-align: center;
  line-height: 40px;
}


.myAlertBox {
  display: none; /* 默认隐藏 */
  position: fixed; /* 固定位置 */
  z-index: 11111; /* 置于顶层 */
  left: 0;
  top: 0;
  width: 100%; /* 全宽 */
  height: 100%; /* 全高 */
  overflow: auto; /* 如果需要滚动 */
  background-color: rgba(0, 0, 0, 0.4); /* 背景颜色（带透明度） */
}
.modal {
  display: block;
  position: absolute;
  z-index: 11112;
  top: 50%;
  margin-top: -250px;
  left: 50%;
  margin-left: -250px;
  width: 500px;
  /*max-height: 500px;*/
  /*min-height: 300px;*/
  background-color: #eee;
  padding: 20px;
  margin-left: -150px;
  margin-top: -100px;
  text-align: center;
  /* color: blue; */
}
.modalClose{
  width: 100%;
  height: 30px;
  margin-top: 5px;
  display: flex;
  justify-content: end;
}
.modalClose label{
  border-radius: 50%;
  /*border: 1px solid #555555;*/
  width: 30px;
  height: 30px;
  color: #555555;
  font-size: 23px;
}
.modal .compare_button{
  padding: 8px 12px;
  background: #389979;
  border: 1px solid #389979;
  color: #ffffff;
}
.modal .get_product{
  max-height: 400px;
  min-height: 200px;
  width: 100%;
  text-align: left;
  line-height: 24px;
  overflow-y: auto;
}

.zuoshangOrders ul {
  margin-top: 10px;
}
.zuoshangOrders ul li{
  display: flex;
  width: 100%;
  height: 30px;
  text-align: center;
  border-bottom: 1px solid lightgray;
}
.zuoshangOrders ul li:first-child{
  height: 50px;
  border-top: 1px solid lightgray;
}
.right-info-left2 .zuoshangOrders ul li{
  display: flex;
  width: 100%;
  line-height: 100px;
  height: auto;
  border-bottom: 1px solid lightgray;
}
.right-info-left2 .zuoshangOrders ul li:first-child{
  height: 50px;
  line-height: 30px;
  text-align: center;
  border-top: none;
}
.zuoshangOrders ul li div{
  /*line-height: 30px;*/
  width: 22%;
  /*border: 1px solid lightgray;*/
  border-bottom: none;
  border-right: none;
  padding-left: 10px;
  white-space: normal;
  overflow: hidden;
  max-height: 100px;
}
.zuoshangOrders ul li div:first-child{
  padding-left: 0px;
  width: 34%;
  text-align:left;
}
.zuoshangOrders ul li div:last-child{
  /*line-height: 30px;*/
  /*width: 25%;*/
  /*border-right: 1px solid lightgray;*/
}
.zuoshangOrders ul li:last-child div{
  /*line-height: 30px;*/
  /*width: 25%;*/
  /*border: 1px solid lightgray;*/
  border-right: none;
}
.zuoshangOrders ul li:last-child div:last-child{
  /*border-right: 1px solid lightgray;*/
}
.qrcode{
  width: 150px;
  position: absolute;
  right: 112px;
  top: 0;
  display:none;
}
.qrcode2{
  width: 150px;
  position: absolute;
  right: 112px;
  display:none;
}
.iframe_map{
  width: 600px;
  height: 450px;
}
.zuoshangOrders_mobile{
  display: none;
}
.item-title{
  height: 24px;
  overflow: hidden;
  white-space: nowrap;
}
.item-name{
  max-width: 32%;
  overflow: hidden;
  white-space: nowrap;
}
.item_number{
  color: #389979;
  font-weight: bold;
  overflow: hidden;
  /*position: absolute;*/
  /*right:8%;*/
  margin-left:10%;
  width: 80%;
  overflow: hidden;
  font-size: 19px;
  text-align: center;
}
.cart_child{
  width: 100%;
  line-height: 40px;
  margin-top:-60px;
  /*position: relative;*/
}
.cart_child dl{
  display: flex;
  margin:0;
}
.cart_child dl div{
  width: 22%;
  text-align: center;
  /*max-height: 50px;*/
  overflow: hidden;
}
.cart_child dl div:first-child{
  width: 33%;
  margin-left:3%;
  text-align: left;
  padding-left: 10%;
}
.cart_child dl:last-child{
  border-bottom: 1px solid lightgray;
}

.cart_child2{
  width: 100%;
  line-height: 24px;
}
.cart_child2 dl{
  display: flex;
}
.cart_child2 dl div{
  width: 22%;
  text-align: center;
  max-height: 24px;
  overflow: hidden;
}
.cart_child2 dl div:first-child{
  width: 33%;
  margin-left:3%
}
.cart_child2 dl:last-child{
  border-bottom: 1px solid lightgray;
}
.quantity-control_cart {
  display: flex;
  align-items: center;
}

.quantity-control_cart button {
  width: 30px;
  height: 30px;
  background-color: lightgray;
  border: none;
}

.quantity-control_cart .quantity_cart {
  width: 80px;
  text-align: center;
  padding-left: 12px;
  height: 26px;
}
.quantity-control_cart label{
  width: 15px;
  margin:0 5px;
}
.quantity-control_cart .del_cart{
  line-height: 20px;
}
.add_cart{
  display: none;
  position: fixed;
  z-index: 1000;
  top: 200px;
  width: 60%;
  margin-left: 20%;
}
.add_cart button{
  background: #389979;
  color: white;
  border: #0a4b3e;
  height: 32px;
  line-height: 32px;
  border-radius: 5px;
  width: 100%;
  cursor: pointer;
}

.modal2 {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.4);
}

.modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 40%;
}

#closeModal {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}
#closeModal:hover,
#closeModal:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th, td {
  border: 1px solid #ddd;
  padding: 8px;
}
.buttons{
  text-align: center;
  margin-top:10px;
}

.buttons button {
  margin-right: 10px;
}
#confirm{
  background: #0a4b3e;
  color: white;
  padding:5px 8px;
  border: #0a4b3e;
  border-radius: 5px;
}
#cancel{
  padding:5px 8px;
  border-radius: 5px;
  border: none;
}
.sel_color .decrease_new,.sel_color .increase_new{
  width: 20px;
}
.sel_color .quantity_new{
  width: 150px;
  line-height: 26px;
}
.del_cart,.batch_del_cart,.batch_count_cart,.del_cart_child
{
  color: white;
  background: #0a4b3e;
  border: none;
  border-radius: 5px;
  padding:3px 8px;
}
.parent_has_child{
  width: 100%;
}
.parent_has_child span{
  position: absolute;
  margin-top:-20px;
}
.mobile_quick_link{display: none;}