
body {
	margin:0;
}

button {
    outline: none;
    border: 0px;
}

.f {
	display:flex;
}
.f-r {
	display:flex;
	flex-direction:row;
}
.f-c {
	display:flex;
	flex-direction:column;
}
.f-w {
	flex-wrap:wrap;
}
.j-sb {
	justify-content:space-between;
}
.j-c {
	justify-content:center;
}
.a-c {
	align-items:center;
}
.r {
	width:100%;
	min-width:1200px;
}
.m {
	width:60%;
	min-width:1160px;
}
.of-x {
	overflow-x:auto;
}
.nowrap {
	overflow:hidden;
	white-space:nowrap;
	text-overflow:ellipsis;
}

.navbar {
	width:100%;
	min-width:1200px;
	display:flex;
	flex-direction:column;
}

.navbar a {
    text-decoration: none;
    color: #202020;
}
.navbar .r_0 {
	line-height:32px;
	background:#434343;
	border-bottom:#CCCCCC 1px solid;
	font-size:12px;
}
.navbar .r_0 a,.navbar .r_0 div {
	color:#bbbbbb;
}
.navbar .r_1 {
	overflow:hidden;
	background:#fff;
}
.navbar .r_1 .logo {
	margin-right: 24px;
	display:flex;
	align-items:center;
}
.navbar .r_1 .company {
	/*width:380px;*/
	overflow:hidden;
	float:left;
	margin-top:20px;
	margin-bottom:10px;
}
.navbar .r_1 .company h3 {
	font-size:24px;
	color:#555555;
	margin:0;
}
.navbar .r_1 .company p {
	font-size:14px;
	color:#818181;
	height:20px;
	line-height:20px;
	margin-top:10px;
	margin-bottom:0;
}
.navbar .r_1 .right {
    text-decoration: none;
}
.navbar .r_1 .right .tel {
	line-height:100px;
	font-size:24px;
	color: #019966;
	margin:0;
}
.navbar .r_1 .right .tel:before {
	content:"\e909";
	margin-right:8px;
	font-size:28px;
	line-height:94px;
}

.navbar .r_1 .right ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    height: 40px;
    margin-right: 24px;
}

.navbar .r_1 .right li {
    display: flex;
    flex-direction: column;
    padding: 0 12px;
    align-items: center;
    font-size: 12px;
}

.navbar .r_1 .right li:before {
    font-size: 48px;
    margin-bottom: 5px;
    margin-top: -15px;
}

.navbar .r_2 {
	overflow:hidden;
	background: white;
	border-top:1px solid #e6e6e6;
	min-height:60px;
	display:flex;
	justify-content:center;
	border-bottom:1px solid #e6e6e6;
}
.navbar .r_2 ul {
	text-decoration:none;
	list-style:none;
	display:flex;
	padding:0;
	margin:0;
	height:100%;
}
.navbar .r_2 ul li {
	display:flex;
	margin-right:80px;
	padding:0 20px;
	font-size:16px;
	height:100%;
}
.navbar .r_2 ul li a {
	height:100%;
	text-decoration:none;
	color:#333;
	align-items:center;
	display:flex;
	transition:color 0.2s;
	font-weight:bold;
}
.navbar .r_2 ul .current a,.navbar .r_2 ul li a:hover {
	color: #019966;
}

.head-text {
	overflow:hidden;
	position:relative;
}
.head-text h3 {
	box-sizing:border-box;
	font-size:28px;
	font-family:Microsoft YaHei;
	font-weight:normal;
	line-height:30px;
	color:#0a2813;
	text-align:center;
	position:relative;
	margin:0;
}
.head-text h3:before {
	content:"";
	background: #019966;
	height:3px;
	width:40px;
	position:absolute;
	align-items:center;
	bottom:-10px;
	left:calc(50% - 20px);
	margin:10px 0 0 0;
}
.head-text p {
	color:#b2b2b2;
	font-size:18px;
	line-height:30px;
	position:relative;
	text-transform:Capitalize;
	text-align:center;
	margin-top:10px;
}
.index-pics {
	width:100%;
	overflow:hidden;
	position:relative;
	align-items:center;
}
.index-pics {
	display:flex;
	flex-direction:column;
	align-items:center;
}
.index-pics ul {
	overflow:hidden;
	zoom:1;
	list-style:none;
	padding:0;
	display: flex;
}
.index-pics ul li {
	width:290px
}
.shadow-card {
	width:1050px;
	padding:50px;
	background-color:#fff;
	box-shadow:0 0 15px rgb(0 0 0 / 20%);
	margin:0 auto;
	overflow:hidden;
}
.shadow-card .title {
	font-size:24px;
	color:#333;
	text-align:center;
	line-height:30px;
	margin-bottom:30px;
}

.shadow-card .text {
	line-height:30px;
	font-size:14px;
	color:#333;
	overflow-y: auto;
    max-height: 500px;
}

.shadow-card figure {
	text-align:center;
}
.shadow-card img {
	max-width:100%
}

.product-card {
	display:flex;
	flex-direction:column;
	margin:8px;
	transition:all 0.3s;
	background:white;
	cursor:pointer;
	text-decoration:none;
}
.product-card:hover {
	box-shadow:0 0 4px rgb(0 0 0 / 20%)
}

.product-card .image {
	padding-top:100%;
	position:relative;
	overflow:hidden
}

.product-card .image .box {
	width:100%;
	height:100%;
	position:absolute;
	left:0;
	top:0;
	transition:transform .3s ease-out;
	display: flex;
	align-items: center;
	justify-content: center;
}

.product-card .image img {
	max-width:100%;
	max-height:100%;
	transition: transform .3s ease-out
}

.product-card:hover .image img {
	transform:scale(1.05)
}

.product-card .text {
	background:#fff;
	min-height:60px;
	overflow:hidden;
	margin:0 15px 15px 15px;
	padding-top:10px;
	border-top:1px #e6e6e6 solid
}
.product-card .text p {
	font-size:14px;
	line-height:22px;
	word-break:break-all;
	text-overflow:ellipsis;
	-webkit-box-orient:vertical;
	-webkit-line-clamp:2;
	overflow:hidden;
	display:-webkit-box;
	text-align:left;
	color:#333;
	overflow:hidden;
	padding-top:4px;
	margin:0;
	height:46px;
}
.product-card .text span {
	color:#ee2e2c;
	line-height:20px;
	height:20px;
	text-align:left;
	font-size:16px
}
.footer.first {
	background:#353535;
	padding:60px 0;
}
.footer.first dl {
	overflow:hidden;
	margin:0 80px 0 0;
}
.footer.first dl a,.footer.first dl dd {
	line-height:30px;
	font-size:14px;
	color:#999999;
	text-decoration:none
}
.footer.first .mobile {
	line-height:60px;
	font-size:24px;
	color:#fff;
	font-weight:550;
}
.footer.first .mobile::before {
	content:"✆";
	display:inline-block;
	font-family:'iconfont';
	margin-right:8px;
	font-size:40px;
	line-height:50px;
	float:left;
}
.footer.first dl dd {
	margin:0;
}
.footer.first dl dt {
	font-size:20px;
	color:#fff;
	padding-bottom:18px;
	font-weight:600;
	position:relative;
	margin-bottom:8px;
}
.footer.first dl dt:before {
	content:"";
	background: #019966;
	height:3px;
	width:40px;
	position:absolute;
	bottom:0;
	left:0;
}
.footer.second {
	color:#999;
	font-size:14px;
	width:100%;
	background:#2e2e2e;
	height:80px;
	line-height:80px;
}
.footer.second .logo {
	float:left;
	display:flex;
	align-items:center;
	margin-right:8px;
	width:180px;
	overflow:hidden;
}
.footer.second .text {
	width:calc(100% - 180px);
	color:#999;
	line-height:80px;
	text-align:center;
}
.group-menu {
	min-height:60px;
	line-height:60px;
	font-size:16px;
	background: #019966;
	border-bottom:1px solid #e6e6e6;
	overflow:hidden;
}
.group-menu ul {
	list-style:none;
	margin:0;
	padding:0;
}
.group-menu ul li {
	color:white;
	list-style:none;
	margin:0;
	padding:0;
	padding:0 40px;
}
.group-menu ul li a {
	color:white;
	text-decoration:none;
	white-space:nowrap;
}
.group-menu ul .current,.group-menu ul li:hover {
	background: #FFA40D;
}
.group-menu ul::-webkit-scrollbar {
	height:8px;
}
.group-menu ul::-webkit-scrollbar-thumb {
	border-radius:5px;
	background:#535353;
}
.pages {
	padding:20px 0 0 0;
	text-align:center;
	font-size:12px;
}
.pages .info {
	text-align:center;
	font-size:12px;
}
.pages .info em {
	color:red;
	font-weight:bold;
	font-style:normal;
}
.pages a {
	color:#333333;
	background:#FFFFFF;
	border:#E6E6E6 1px solid;
	padding:6px;
	text-decoration:none;
	margin:0 6px;
}
.pages a:hover {
	background:#F1F1F1;
	border:#CCCCCC 1px solid;
	color: #FFA40D;
}
.pages #page {
	border:#CCCCCC 1px solid;
	padding:6px;
	width:30px;
	text-align:center;
	color:#666666;
	outline:none;
}
.pages button {
	width:48px;
	background:#EEEEEE;
	border:#CCCCCC 1px solid;
	font-weight:bold;
	padding:6px;
	margin:0 6px;
	outline:none;
}
#sub-page li {
	cursor:pointer;
}
.list dl {
	line-height:40px;
	font-size:16px;
	overflow:hidden;
	display:flex;
	padding-left:8px;
	margin:0;
}
.list dl dt {
	color:#888;
	width:15%;
}
.list dl dd {
	color:#000;
	width:70%;
}

.album {
	width: 400px;
	display: flex;
	flex-direction: column;
	position: relative;
}

.album .view {
	border: 1px solid #eee;
	width: 400px;
	height: 400px;
	position: relative;
	overflow: hidden;
	cursor: zoom-in
}

.album .view>img {
	position: absolute;
	width: 100%;
	height: 100%;
	inset: 0;
}

.album .preview {
	display: flex;
	flex-direction: row;
	margin-top: 12px;
	justify-content: space-between;
	align-items: center;
}

.album .handle {
	height: 56px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	cursor: pointer;
	user-select: none;
	color: white;
}

.album .imgs {
	width: 336px;
	height: 56px;
	display: flex;
	overflow: hidden;
}

.album .imgs ul {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	flex-wrap: nowrap;
}

.album .imgs li {
	width: 56px;
	height: 56px;
	margin-right: 14px;
}

.album .imgs img {
	width: 54px;
	height: 54px;
	cursor: pointer;
	padding: 1px;
	background: #eee;
}

.album .imgs .current {
	width: 50px;
	height: 50px;
	padding: 3px;
	background: #FF6600;
}

.album .zoom {
	width: 400px;
	height: 400px;
	position: absolute;
	right: -410px;
	top: 0;
	display: none;
	border: 1px solid #eee;
	overflow: hidden;
	background: white;
	z-index: 1000;
}

.album .zoom div {
	position: absolute;
	inset: 10px;
	overflow: hidden;
	z-index: 1000;
}

.album .zoom img {
	position: absolute;
}

.album .view .mask {
	position: absolute;
	display: none;
	width: 120px;
	height: 120px;
	left: 0;
	top: 0;
	opacity: 0.25;
	background-color: gray;
	background-image: radial-gradient(tan 30%,transparent 0),
                        radial-gradient(tan 30%,transparent 0);
	background-size: 5px 5px;
	background-position: 0 0,15px 15px;
	pointer-events: none;
}

.pro-info {
    width: 100%;
    margin: 16px;
    display: flex;
}

.pro-info .title {
	font-size:20px;
	line-height:30px;
	overflow:hidden;
	color:#000;
	max-height:60px;
	padding-left:15px;
	font-weight:bold;
}
.pro-info .price {
	background:#fff5ec;
	border-top:1px dotted #ffd1a7;
	border-bottom:1px dotted #ffd1a7;
	margin-top:20px;
	padding:5px 15px;
}
.pro-info .price p {
	height:46px;
	line-height:46px;
	color:#666;
	margin:0;
}
.pro-info .price p i {
	font-size:14px;
	color:#888;
	margin-right:25px;
	font-style:normal;
}
.pro-info .price p em {
	font-style:normal;
}
.pro-info .price p span {
	font-size:26px;
	font-weight:700;
	color:#cc291b;
}
.pro-info .price p span em {
	font-size:14px;
}
.pro-info .base {
	margin-top:10px
}
.pro-info .base dl {
	overflow:hidden;
	width:100%;
	font-size:14px;
	line-height:40px;
	display:flex;
	margin:0;
}
.pro-info .base dt {
	color:#888;
	padding-left:15px
}
.pro-info .base dd {
	overflow:hidden;
	color:#000
}

.side-pro {
	padding:0 10px;
	overflow:hidden;
	background:#fff;
	margin:0
}
.side-pro a {
	height:90px;
	color:#333;
	font-size:12px;
	border-bottom:1px solid #f3f3f3;
	position:relative;
	overflow:hidden;
	padding:8px 0;
	text-decoration:none
}
.side-pro b {
	transition:color 0.2s;
	display:-webkit-box;
	word-break:break-all;
	overflow:hidden;
	text-overflow:ellipsis;
	-webkit-box-orient:vertical;
	-webkit-line-clamp:2
}

.side-pro img {
    width: 90px;
    height: 90px;
}

.side-pro span {
    color: red;
}

.side-pro a:hover b {
	color:red
}

.side-pro a:last-child {
	border:none
}

.textarea {
	padding:15px;
	overflow:hidden;
	border-top:none;
	background:#fff
}
.textarea figure {
	text-align:center;
}
.textarea img {
	max-width:100%
}

.props {
	border: 1px solid #ccc;
	display: flex;
	flex-direction: column;
}

.props ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	font-size: 14px;
    align-items: stretch;
    border-bottom:1px solid #ccc;
}

.props ul:last-child {
    border-bottom: none;
}

.props ul li{ 
    padding: 0 8px;
    display: flex;
    align-items: center;
    min-height: 100%;
    line-height: 40px;
}

.props ul li:first-child{
    width: 20%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    position: relative;
    border-right: 1px solid #ccc;
    background: #F5F5F5;
}

.props ul li:last-child {
    width: 80%;
}

.empty {
    display: flex;
    margin: 16px 0;
    width: 100%;
    flex-direction: column;
    align-items: center;
    color: #a0a0a0;
    font-size: 14px;
}

.empty>svg {
    margin-bottom: 4px;
}


.index-row {
    overflow: hidden;
    position: relative;
    font-family: Microsoft YaHei;
}

.index-row p {
    color: #b2b2b2;
    font-size: 18px;
    line-height: 30px;
    position: relative;
    text-transform: Capitalize;
    text-align: center;
    margin-top: 0;
}

.index-row h3 {
    box-sizing: border-box;
    font-size: 28px;
    font-weight: normal;
    line-height: 30px;
    color: #0a2813;
    text-align: center;
    position: relative;
    margin: 0;
}

.index-row h3:before {
    content: "";
    background: #019966;
    height: 3px;
    width: 40px; 
    position: absolute;
    align-items: center;
    bottom: -5px;
    left: calc(50% - 20px);
}

.card {
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
}

.card>.title {    
    height: 45px;
    line-height: 45px;
    padding: 0 15px;
    font-size: 16px;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.card>.title:before {
    content: "";
    display: inline-block;
    width: 4px;
    height: 16px;
    background: #024697;
    float: left;
    margin: 15px 10px 0 0;
}

.side-info {
    margin: 0;
    padding: 10px;
}

.side-info dt{
    font-size: 14px;
    border-bottom: 1px solid #dddddd;
    color: #555555;
    height: 40px;
    line-height: 40px;
    font-weight: 600;
}

.side-info dd{    
    font-size: 14px;
    color: black    ;
    line-height: 30px;
    margin: 0;
}

.side-info span {
    width: 60px;
    display: inline-block;
}  

.company-atlas {
    width: 100%;
    height: 100%;
    overflow:hidden; position:relative; 
    background: #e0e0e0;
}

.company-atlas .bd {
  width: 100%;
  height: 100%;
}

.company-atlas ul {
  width: 100%;
  height: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
}

.company-atlas ul li {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.company-atlas ul li .front {
  max-width: 100%;
  max-height: 100%;
  display: block;
  position: absolute;
}

.company-atlas ul li .back {
  width: 100%;
  height: 100%;
  filter: blur(10px);
  -webkit-filter: blur(10px);
  display: block;
  position: absolute;
}


.inquiry-div {
	position: fixed;
	bottom: 40px;
	right: 40px;
	width: 350px;
	height: 260px;
	z-index: 2000;
	pointer-events: none;
}

.inquiry {
	position: relative;
	width: 100%;
	height: 100%;
	pointer-events: none;
}

.inquiry .popup {
	background: #4CAF50;
	position: absolute;
	right: 8px;
	bottom: 8px;
	width: 32px;
	height: 32px;
	user-select: none;
	display: flex;
	color: white;
	font-size: 32px;
	align-items: center;
	justify-content: center;
	font-family: cursive;
	border-radius: 16px;
	cursor: pointer;
	pointer-events: auto;
}


.inquiry .view {
	width: 100%;
	height: 100%;
	background: #f8f9fa;
	display: flex;
	position: relative;
	flex-direction: column;
	box-shadow: 0 0 2px 0px #808080;
	pointer-events: auto;
}

.inquiry .title {
	padding: 16px 8px;
	background: #4CAF50;
	display: flex;
	font-size: 14px;
	align-items: center;
	color: white;
	justify-content: space-between;
}

.inquiry .close {
	width: 16px;
	height: 16px;
	font-family: cursive;
	user-select: none;
	cursor: pointer;
	margin-left: 8px;
}

.inquiry .input {
	display: flex;
	padding: 8px;
	background: white;
    height: 100%;
}

.inquiry .form {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
    width: 100%;
	margin: 0;
}

.inquiry .form textarea {
	border: none;
	outline: none;
	resize: none;
	font-size: 12px;
	border: 1px solid #ccc;
	padding: 8px 4px;
}

.inquiry .form input {
	outline: none;
	resize: none;
	font-size: 12px;
	border: 1px solid #ccc;
	padding: 8px 4px;
}

.inquiry .form button {
	background: #4CAF50;
	border: none;
	outline: none;
	color: white;
	cursor: pointer;
	transition: 0.5s background;
	height: 40px;
	border-radius: 3px;
}

.inquiry .form button:hover {
	background: #5abf5e;
}


.inquiry .form>* {
    margin: 4px 0;
}