/*
关于注释：
s表示起始位置start，e表示结束位置end。
*/


/*网站全局引用的样式，主要模块的样式集合*/


/*---------- body s ----------
 这里的样式主要是全局的，基于html本身的一些标签的样式自定义*/

html {}

body {
	font-size: 16px;
	line-height: 1.6em;
	/*color:#444;*/
	/*font-family: 'Century Gothic', Helvetica, Arial, sans-serif;*/
	/*font-family这一条是整个网站的文字字体的自定义，可按需自行修改*/
	padding: 0;
	margin: 0;
}

a {
	color: #333;
	transition: all .3s ease;
}

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

a:focus {
	outline: 5px auto -webkit-focus-ring-color;
	outline-offset: -2px;
	outline: none;
	outline-offset: 0;
}

ul {
	padding-left: 0;
}

ul>li {
	list-style: none;
}

img {
	width: 100%;
	height: auto;
	transition: all .3s ease;
}


/*---------- body e ----------*/


/*---------- header-bar s ----------
 网站头部顶端的bar工具条样式*/

.header-bar {
	padding: 5px 0;
	background-color: #555;
}

.header-bar .notice {
	font-size: 12px;
	text-align: center;
	margin-bottom: 0;
}

.header-bar .notice>a {
	font-size: 12px;
}

.header-bar ul {
	margin-bottom: 0
}

.header-bar ul>li {
	float: left;
	margin-right: 25px;
}

.header-bar ul>li:last-child {
	margin-right: 0;
}

.header-bar .notice,
.header-bar .notice>a,
.header-bar ul>li>a {
	color: #fff;
}


/*---------- header-bar e ----------*/


/*---------- header s ----------
 网站头部样式*/

header {
	padding: 25px 0;
}

.logo {
	display: block;
	color: #fc5cd8;
	font-size: 32px;
	font-weight: bold;
	text-decoration: none;
}

.logo:hover {
	text-decoration: none;
}

.logo>span {
	display: block;
	color: #333;
	font-size: 12px;
}

header .form-inline>* {
	/*float: right*/
}

header .form-inline input.form-control {
	width: calc(100% - 55px);
	max-width: inherit;
	min-width: 300px;
	height: 50px;
}

.search-keyword {}

.search-keyword>a {
	display: inline-block;
	margin: 5px;
	font-size:14px;
}


/*---------- header e ----------*/


/*---------- nav s ----------
 网站导航的样式*/

.navbar-default {
	border-radius: 0;
	border: none;
	background-color: transparent;
	z-index: 9999;
}

.navbar-default .navbar-brand {
	display: none;
	color: #fff;
}

.navbar-default .navbar-brand:focus,
.navbar-default .navbar-brand:hover {
	color: #fc5cd8;
}

.navbar {
	/*min-height: 66px;*/
}

.navbar-default .navbar-collapse {
	background-color: #d85c5cf2;
}

.navbar-default .navbar-nav>li>a,
.navbar-default .navbar-nav>li>span {
	display: block;
	color: #fff;
	font-size: 18px;
	line-height: 66px;
	padding: 0 48px;
}

.navbar-default .navbar-nav>li>a:focus,
.navbar-default .navbar-nav>li>a:hover,
.navbar-default .navbar-nav>li>span:focus,
.navbar-default .navbar-nav>li>span:hover {
	color: #fff;
	background-color: #f2698c;
	cursor: pointer;
}

.navbar-default .navbar-nav>.active>a,
.navbar-default .navbar-nav>.active>a:focus,
.navbar-default .navbar-nav>.active>a:hover,
.navbar-default .navbar-nav>.active>span,
.navbar-default .navbar-nav>.active>span:focus,
.navbar-default .navbar-nav>.active>span:hover {
	color: #fff;
	background-color: #f2698c;
}

.navbar-default .navbar-nav>.open>a,
.navbar-default .navbar-nav>.open>a:focus,
.navbar-default .navbar-nav>.open>a:hover,
.navbar-default .navbar-nav>.open>span,
.navbar-default .navbar-nav>.open>span:focus,
.navbar-default .navbar-nav>.open>span:hover {
	color: #fff;
	background-color: #f2698c;
}

.dropdown-menu>li>a {
	padding: 8px 20px;
}

.dropdown-menu>li>a:focus,
.dropdown-menu>li>a:hover {
	color: #fff;
	text-decoration: none;
	background-color: #f2698c;
}

.navbar-default .navbar-nav>li.dropdown>a:after,
.navbar-default .navbar-nav>li.dropdown>span:after {
	content: "\f107";
	font-family: FontAwesome;
	padding-left: 5px;
}


/*dropdown-menu s*/

.navbar-collapse {
	position: relative;
}

.dropdown-large {
	position: static !important;
}

.dropdown-menu-large {
	width: 100%;
	padding: 20px 0px;
}

.dropdown-menu-large>li>ul {
	padding: 0;
	margin: 0;
}

.dropdown-menu-large>li>ul>li {
	list-style: none;
}

.dropdown-menu-large>li>ul>li>a {
	display: block;
	padding: 3px 20px;
	clear: both;
	font-weight: normal;
	line-height: 1.428571429;
	color: #333;
	white-space: normal;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

.dropdown-menu-large>li ul>li>a:hover,
.dropdown-menu-large>li ul>li>a:focus {
	/*text-decoration: none;*/
	color: #1e88e5;
	/*background-color: #f5f5f5;*/
}

.dropdown-menu-large .disabled>a,
.dropdown-menu-large .disabled>a:hover,
.dropdown-menu-large .disabled>a:focus {
	color: #999999;
}

.dropdown-menu-large .disabled>a:hover,
.dropdown-menu-large .disabled>a:focus {
	text-decoration: none;
	background-color: transparent;
	background-image: none;
	filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
	cursor: not-allowed;
}

.dropdown-menu-large .dropdown-header {
	color: #1e88e5;
	font-size: 18px;
}


/*dropdown-menu e*/


/*quick-info s*/

.quick-info {
	position: relative;
	padding: 0 15px;
	background-color: #1e88e5;
	z-index: 9999;
}

.quick-info:before {
	position: absolute;
	top: -10px;
	left: -24px;
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 10px 12px 0;
	border-color: transparent #0c60a9 transparent transparent !important;
}

.quick-info:after {
	content: "";
	position: absolute;
	width: 100%;
	height: 10px;
	top: -10px;
	left: 0;
	background-color: #1e88e5;
}

.quick-info .title {
	display: block;
	color: #fff;
	line-height: 50px;
	text-decoration: none;
	cursor: pointer;
}

.quick-info .cart-list {
	position: absolute;
	top: 50px;
	right: 0;
	min-width: 600px;
	border-radius: 0 0 5px 5px;
	border: 1px solid #1e88e5;
	background-color: #fff;
}

.quick-info .cart-list ul {
	border: 1px solid #ddd;
}

.quick-info .cart-list ul>li {
	/*width: 100%;
	float: left;*/
	overflow: hidden;
}

.quick-info .cart-list ul>li:first-child {
	font-weight: bold;
}

.quick-info .cart-list ul>li+li {
	border-top: 1px solid #ddd;
}

.quick-info .cart-list ul>li span {
	position: relative;
	display: block;
	padding: 10px;
}

.quick-info .cart-list ul>li span+span:before {
	position: absolute;
	top: 0;
	left: 0;
	content: "";
	width: 1px;
	height: 1000px;
	/*float: left;*/
	background-color: #ddd;
}


/*quick-info e*/


/*---------- nav e ----------*/


/*---------- section s ----------
 网站主体内容块的样式集合*/


/*breadcrumb s
 网站面包屑路径的样式*/

.breadcrumb {}


/*breadcrumb e*/


/*title-default s
 网站主标题的样式*/

.title-default {
	position: relative;
	width: 100%;
	float: left;
}

.title-default .title {
	color: #333;
	font-size: 20px;
	font-weight: bold;
	padding-bottom: 5px;
	border-bottom: 1px solid #ddd;
}

.title-default-box .title {
	color: #fff;
	padding: 10px;
	border-bottom: none;
	background-color: #1e88e5;
}

.title-default .grid-choice {
	position: absolute;
	top: 0;
	right: 0;
}

.title-position {
	position: absolute !important;
	left: 10px;
	right: 10px;
	bottom: 15px;
	padding: 6px 12px;
	color: #fff;
	font-size: 16px;
	background-color: rgba(0, 0, 0, .3);
	z-index: 9;
}


/*title-default e*/


/*section-intro s
 网站页面介绍的文本段落样式*/

.page-intro {
	padding: 10px 15px;
	border: 1px solid #efefef;
	background-color: #f9f9f9;
}

.page-intro .title {
	font-size: 20px;
	font-weight: bold;
	padding: 0;
	margin: 0;
	margin-bottom: 10px;
}


/*section-intro e*/


/*nav-tabs s
 选项卡自定义样式*/

.nav-tabs {
	border-bottom: 1px solid #1e88e5;
}

.nav-tabs>li>a {
	border-radius: 0;
}

.nav-tabs>li.active>a,
.nav-tabs>li.active>a:focus,
.nav-tabs>li.active>a:hover,
.nav>li>a:focus,
.nav>li>a:hover {
	color: #fff;
	cursor: default;
	/*border: 1px solid #1e88e5;*/
	border-bottom-color: transparent;
	background-color: #1e88e5;
}


/*nav-tabs e*/


/*rating-box s*/

.rating-box {}

.rating-box .fa {
	color: #f7cb1c;
}


/*rating-box e*/


/*item-box s
 box列表中单一块的样式，全局定义，结合其他box样式*/

.item-box {
	position: relative;
	width: 100%;
	float: left;
}

.item-box .pic-box {
	display: block;
	margin-bottom: 10px;
}

.item-box .info .title {
	display: block;
	color: #222;
	/*font-weight: bold;*/
	line-height: 1.42857143;
}

.item-box .info .title:hover {
	color: #1e88e5;
}


/*item-box e*/


/*product-box s
 产品列表中单个产品样式*/

.price-box {
	position: relative;
	width: 100%;
	float: left;
}

.product-box {
	margin-bottom: 30px;
}

.price>span {
	color: #1e88e5;
	font-size: 16px;
	font-weight: bold;
}

.price>del {
	color: #999;
	font-size: 12px;
	font-weight: lighter;
	padding-left: 10px;
}


/*product-box e*/


/*products-grid s
 产品列表页九宫格与单行排列切换的样式*/

.products-grid {
	position: relative;
	width: 100%;
	float: left;
}

.col-list {
	/*margin-bottom: 30px;*/
}

.col-full {
	width: 100%;
	float: left;
}

.col-box .item-box .text-summary {
	display: none;
}

.col-full .item-box .pic-box {
	width: 30%;
	float: left;
	margin-bottom: 0;
}

.col-full .item-box .info {
	width: 70%;
	float: left;
	padding-left: 30px;
}

.col-full .item-box .info .title,
.col-full .item-box .info .star,
.col-full .item-box .info .price {
	display: block;
}

.col-full .item-box .info .title {
	font-weight: bold;
}

.col-full .item-box .info .text-summary {
	display: block;
}

.grid-choice .btn {
	color: #3597e2;
	padding: 3px 8px;
	border: 1px solid #3597e2;
	background-color: #fff;
}

.grid-choice .active,
.grid-choice .active:focus,
.grid-choice .active:hover,
.grid-choice .active:active,
.grid-choice .active:active:focus,
.grid-choice .active:active:hover {
	color: #fff;
	border: 1px solid #3597e2;
	background-color: #3597e2;
}


/*products-grid e*/


/*video-box s
 视频列表单一box的样式*/

.video-box {
	margin-bottom: 15px;
}

video {
	width: 100%;
	height: auto;
	max-height: 250px;
	background-color: #222;
}


/*video-box e*/


/*menu s*/

.menu-default {}

.menu-default>li>a {
	line-height: 1.8;
}

.menu-default>li.active {
	background-color: #1e88e5;
}

.menu-default>li.active>a,
.menu-default>li.active>a:hover {
	color: #fff;
}

.menu-default>li>a:hover {
	color: #1e88e5;
}

.menu-line>li {
	border-bottom: 1px dashed #ddd;
}

.menu-line>li>a {
	display: block;
	padding: 4px 0;
}

.menu-icon>li:before {
	display: inline-block;
	float: left;
	content: "\f105";
	color: #1e88e5;
	font-family: FontAwesome;
	padding-top: 6px;
	margin-right: 10px;
}

.menu-box {
	border: 1px solid #efefef;
	background-color: #f5f5f5;
}

.menu-box>li {
	padding: 0 10px;
}

.menu-box>li:last-child {
	border-bottom: none;
	margin-bottom: 5px;
}

.menu-box>li>a {
	line-height: 2.4 !important;
}


/*menu e*/


/*aside-box s
 侧边栏的单一box元素的样式*/

.aside-box {
	margin-bottom: 20px;
}

.aside-title {
	color: #333;
	font-weight: bold;
}

.aside-link {
	padding: 5px 0;
	border-top: 1px solid #ddd;
}

.aside-box .product-box {
	margin-bottom: 10px;
}

.aside-box .product-box .info .title {
	font-weight: normal;
}


/*aside-box e*/


/*menu-list-multiple s*/

.menu-list-multiple ul>li.level-main {
	position: relative;
}

.menu-list-multiple ul>li.level-main>a {
	display: block;
	padding: 6px 0;
	border-bottom: 1px dashed #c9c9c9;
}

.menu-list-multiple ul>li.level-main ul.sub-menu li.level-sub:before {
	display: inline-block;
	float: left;
	content: "\f105";
	color: #1e88e5;
	font-family: FontAwesome;
	padding-top: 6px;
}

.menu-list-multiple ul>li.level-main ul.sub-menu li.level-sub>a {
	display: block;
	color: #666;
	padding: 6px 15px;
	border-bottom: 1px dashed #c9c9c9;
}

.menu-list-multiple .touch-button {
	display: inline-block;
	position: absolute;
	top: 14px;
	right: 0;
	width: 15px;
	height: 15px;
	cursor: pointer;
	text-indent: -9999px;
	padding: 0;
	border: medium none;
	background: #868686 url("../img/plus-minus.png") no-repeat scroll left top;
	overflow: hidden;
}

.menu-list-multiple .touch-button.active,
.menu-list-multiple .touch-button:hover {
	background-position: left bottom;
	background-color: #1e88e5;
}


/*menu-list-multiple e*/


/*owl-theme s
 对轮播插件owl-carousel的自定义样式*/

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
	color: inherit;
	padding: 2px 12px !important;
	border: 1px solid #ddd;
	background-color: #fff;
}

.owl-theme .owl-nav [class*=owl-]:hover {
	color: #fff;
	border: 1px solid #1e88e5;
	background: #2196f3;
	transition: all .3s ease;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
	background: #1e88e5;
}

.owl-nav-float .owl-nav {
	position: absolute;
	top: -50px;
	right: -5px;
	margin-top: 0;
}

.owl-carousel .product-box {
	margin-bottom: 0;
}


/*owl-theme e*/


/*page-nav s
 页面分栏排序的自定义样式*/

.page-nav {
	position: relative;
	width: 100%;
	float: left;
}

.pagination>li>a,
.pagination>li>span {
	color: #1e88e5;
	border: 1px solid #1e88e5;
}

.pagination>li>a:focus,
.pagination>li>a:hover,
.pagination>li>span:focus,
.pagination>li>span:hover {
	color: #fff;
	border-color: #2196f3;
	background-color: #2196f3;
}

.pagination>.active>a,
.pagination>.active>a:focus,
.pagination>.active>a:hover,
.pagination>.active>span,
.pagination>.active>span:focus,
.pagination>.active>span:hover {
	border-color: #1e88e5;
	background-color: #1e88e5;
}


/*style 02 s*/

.pagination-block>li {
	display: inline-block;
	float: left;
}

.pagination-block>li+li {
	margin-left: 4px;
}

.pagination-block>li>a {
	border-radius: 0 !important;
}

.pagination-block>li>a,
.pagination-block>li>span {
	color: #333;
	border: 1px solid #999;
}


/*style 02 e*/


/*page-nav e*/


/*---------- section e ----------*/


/*---------- footer s ----------
 网站底部结构的全局样式*/

footer {
	position: relative;
	width: 100%;
	float: left;
	padding: 30px 0;
	background-color: #000;
}

.footer-menu .title,
.footer-item-box .title {
	color: #ffc131;
}

.footer-menu ul>li>a {
	color: #999;
	line-height: 1.8;
	text-decoration: none;
}

.footer-item-box .text-summary {
	color: #999;
	line-height: 1.6;
}

.footer-item-box .text-summary>a {
	color: #999;
	text-decoration: none;
}

.footer-item-box .social-icon>a {
	display: inline-block;
	color: #999;
	text-decoration: none;
	margin-right: 10px;
}

.footer-item-box .social-icon>a .fa {
	font-size: 30px;
}

.copyright {
	color: #999;
	text-align: center;
}

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

footer .left .item {
	width: 100%;
	float: left;
	margin-bottom: 15px;
}

footer .left .item .left .fa {
	width: 60px;
	height: 60px;
	text-align: center;
	font-size: 36px;
	line-height: 60px;
	border-radius: 100%;
	background: #fff;
}

footer .left .item .right .title {
	color: #fff;
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 5px;
}

footer .left .item .right .summary {
	color: #fff;
	display: -webkit-box;
	float: left;
	-webkit-box-orient: vertical;
	height: 40px;
	-webkit-line-clamp: 2;
	margin-bottom: 0;
	overflow: hidden;
	line-height: 1.42857143;
}

footer .right .title {
	color: #fff;
}

footer .right .summary {
	color: #fff;
}

footer .right .social-icon a {
	display: inline-block;
	margin-right: 10px;
}

footer .right .social-icon .fa {
	/*color: #fff;*/
	font-size: 30px;
}

footer .footer-link {
	text-align: center;
}

footer .footer-link>a {
	display: inline-block;
	color: #fff;
	margin: 0 10px;
}


/*---------- footer e ----------*/

.subpageimg img{
	    border-radius: 15px;
}