/*
Theme Name: ygnews
Theme URI: https://www.ygtheme.com
Author: 阿叶
Author URI: https://www.ygtheme.com
Description: YGNEWS主题是有个主题(ygtheme.co)开发的一款多功能资讯主题，该主题适用于自媒体、博客、资讯等多种类型站点。
Version: 1.1
Tags: 自媒体主题、博客主题、资讯主题
*/

:root {
	--primary-color: #0080ff;
	--bg-color: #f7f9fa;
	--border-color: #f2f6fc
}
body,html {
	background: var(--bg-color)
}
.b-a {
	border: 1px solid var(--border-color)!important;
}
.b-b {
	border-bottom: 1px solid var(--border-color)!important;
}
.b-t {
	border-top: 1px solid var(--border-color)!important;
}
.b-r-4 {
	border-radius: 4px!important;
}
.gradient-ver-bw {
    background: #000;
    background: -moz-linear-gradient( bottom, rgba(0, 0, 0, 0.4) 0, transparent 100% );
    background: -webkit-gradient( linear, bottom, top, color-stop(0, rgba(0, 0, 0, 0.4)), color-stop(100%, transparent) );
    background: -webkit-linear-gradient( bottom, rgba(0, 0, 0, 0.4) 0, transparent 100% );
    background: -o-linear-gradient( bottom, rgba(0, 0, 0, 0.4) 0, transparent 100% );
    background: -ms-linear-gradient( bottom, rgba(0, 0, 0, 0.4) 0, transparent 100% );
    background: -webkit-gradient( linear, left bottom, left top, from(rgba(0, 0, 0, 0.4)), to(transparent) );
    background: -webkit-gradient( linear, left bottom, left top, color-stop(0, rgba(0, 0, 0, 0.4)), to(transparent) );
    background: -webkit-gradient( linear, left bottom, left top, color-stop(0, rgba(0, 0, 0, 0.4)), to(transparent) );
    background: -webkit-gradient( linear, left bottom, left top, color-stop(0, rgba(0, 0, 0, 0.4)), to(transparent) );
    background: -webkit-gradient( linear, left bottom, left top, color-stop(0, rgba(0, 0, 0, 0.4)), to(transparent) );
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0, transparent 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#000000, endColorstr=#ffffff);
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient (GradientType=0, startColorstr=#000000, endColorstr=#ffffff)";
}
.img_hover {
	transition: all .5s;
}
.img_hover:hover {
	transform:scale(1.05);
	-webkit-transform:scale(1.05);
	-moz-transform:scale(1.05);
}
.info {}
.info span {}
.info span i {
	display: inline-block;
	margin-right: 3px;
	transform: translateY(2px);
}
.wp {
	width: 840px;
}

/*
 * ------------------------------------------------------------------------------
 * 顶部用户中心
 * ------------------------------------------------------------------------------
 */
.default-avatar {
    background: #e9e9e9;
}
.navbar-user:hover .dropdown {
    display: block;
}
.navbar-user .dropdown {
    display: none;
    max-width: none;
    width: 240px;
    min-height: 120px;
    padding-top: 10px;
    top: 32px;
    -webkit-box-shadow: 0 0 10px rgba(0,0,0,.05);
    box-shadow: 0 0 10px rgba(0,0,0,.05);
    -webkit-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
}
.navbar-user .dropdown .role {
    background: #000;
    color: #fff;
    font-size: 12px;
    padding: 3px 4px 1px 4px;
    border-radius: 3px;
    transform: scale(.9);
    -webkit-transform: scale(.9);
    -moz-transform: scale(.9);
}
.navbar-user .dropdown .user-warp {
    padding-bottom: 15px;
}
.navbar-user .dropdown .user-warp .user-name {
    color: #333;
}
.navbar-user .dropdown .user-menu {
    padding-top: 10px;
}
.navbar-user .dropdown .user-menu a {
	font-size: 13px;
    color: #999;
    transition: all .3s;
    background: #f5f5f5;
    padding: 4px 6px;
    display: inline-block;
    margin-top: 5px;
    border-radius: 2px;
}
.navbar-user .dropdown .user-menu a:hover {
    color: #fff;
    background: var(--primary-color);
}
/*
 * ------------------------------------------------------------------------------
 * 顶部导航条样式01
 * ------------------------------------------------------------------------------
 */
.navBar_01 {
	box-shadow: 0 5px 15px rgba(72, 125, 178, 0.1)
}
.navBar_01 .logo {
	height: 32px;
}
.navBar_01 .logo img {
	height: 100%;
}
.navBar_01 .nav>ul {}
.navBar_01 .nav>ul>li {
	display: inline-block;
	position: relative;
	margin: 0 20px;
}
.navBar_01 .nav>ul>li>a {
	display: block;
	font-size: 15px;
	padding: 18px 0;
}
.navBar_01 .nav>ul>li>a:hover {
	color: var(--primary-color);
}
.navBar_01 .nav>ul>li>a:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0%;
	height: 2px;
	background: var(--primary-color);
	transition: all .3s;
}
.navBar_01 .nav>ul>li>a:hover:after {
	width: 100%;
}
.navBar_01 .nav>ul>li:hover .sub-menu {
	display: block;
	border-radius: 4px;
}
.navBar_01 .sub-menu {
	position: absolute;
	border-top: 1px solid var(--border-color);
	left: 0;
	list-style: none;
	display: none;
	padding: 0;
	background: #fff;
	z-index: 999;
}
.navBar_01 .sub-menu li {
	text-align: left;
	min-width: 160px;
	padding-left: 15px;
	border-bottom: 1px solid var(--border-color);
}
.navBar_01 .sub-menu li:last-child {
	border-bottom: 0;
}
.navBar_01 .sub-menu li a {
	display: block;
	padding: 10px 0;
	color: #999;
	font-size: 13px;
	transition: all .3s;
}
.navBar_01 .sub-menu li a:hover {
	color: #333;
}


/*
 * ------------------------------------------------------------------------------
 * 顶部导航条样式02
 * ------------------------------------------------------------------------------
 */
.navBar_02 {
	position: relative;
	z-index: 999;
	box-shadow: 0 5px 15px rgba(72, 125, 178, 0.1)
}
.navBar_02 .topBar {
	padding: 12px 0;
}
.navBar_02 .topNav {}
.navBar_02 .topNav ul {}
.navBar_02 .topNav ul li {
	display: inline-block;
	list-style: none;
	margin-right: 30px;
}
.navBar_02 .topNav ul li a {
	font-size: 15px;
}
.navBar_02 .logo {
	height: 28px;
}
.navBar_02 .logo img {
	height: 100%;
}
.navBar_02 .nav>ul {
	margin-bottom: 0;
}
.navBar_02 .nav>ul>li {
	display: inline-block;
	position: relative;
}
.navBar_02 .nav>ul>li>a {
	display: block;
	position: relative;
	margin-right: 30px;
	font-size: 14px;
	color: #888;
	padding: 15px 0;
	transition: all .3s;
}
.navBar_02 .nav>ul>li>a:hover {
	color: var(--primary-color);
}
.navBar_02 .nav>ul>li>a:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0%;
	height: 2px;
	background: var(--primary-color);
	transition: all .3s;
}
.navBar_02 .nav>ul>li>a:hover:after {
	width: 100%;
}

.navBar_02 .nav>ul>.current-menu-item {}
.navBar_02 .nav>ul>.current-menu-item>a {
	color: var(--primary-color);
	position: relative;
}
.navBar_02 .nav>ul>.current-menu-item>a:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: var(--primary-color);
}
.navBar_02 .nav>ul>li:hover .sub-menu {
	display: block;
}
.navBar_02 .sub-menu {
	position: absolute;
	left: 0;
	list-style: none;
	display: none;
	padding: 0;
	background: #fff;
	z-index: 999;
	border-radius: 4px;
}
.navBar_02 .sub-menu li {
	min-width: 160px;
	padding-left: 15px;
	border-bottom: 1px solid var(--border-color);
}
.navBar_02 .sub-menu li:last-child {
	border-bottom: 0;
}
.navBar_02 .sub-menu li a {
	display: block;
	padding: 10px 0;
	color: #999;
	font-size: 13px;
	transition: all .3s;
}
.navBar_02 .sub-menu li a:hover {
	color: #333;
}

/*
 * ------------------------------------------------------------------------------
 * 顶部导航条样式03
 * ------------------------------------------------------------------------------
 */
.navBar_03_other {
    position: unset!;
    background: #fff;
    box-shadow: 0 5px 15px rgba(72, 125, 178, 0.1);
}
.navBar_03_other .nav>ul>li>a {
    color: #666;
}
.navBar_03_other .nav>ul>li>a:after {
	background: #666;
}
.navBar_03_other .current-menu-item {
    border-bottom: 1px solid #666!important;
}
.navBar_03 {
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	background: transition;
	transition: all .3s;
}
.navBar_03_active {
    background: #fff;
    box-shadow: 0 5px 15px rgba(72, 125, 178, 0.1);
}
.navBar_03_active .nav>ul>li>a {
    color: #666;
}
.navBar_03_active .current-menu-item {
    border-bottom: 1px solid #666!important;
}
.navBar_03 .logo {
	height: 32px;
}
.navBar_03 .logo img {
	height: 100%;
}
.navBar_03 .current-menu-item {
    border-bottom: 1px solid #fff;
}
.navBar_03 .nav>ul {}
.navBar_03 .nav>ul>li {
	display: inline-block;
	position: relative;
	margin-left: 30px;
}
.navBar_03 .nav>ul>li>a {
	position: relative;
	padding: 22px 0;
	display: block;
	transition: all .3s;
}
.navBar_03 .nav>ul>li>a:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0%;
	height: 1px;
	background: #fff;
	transition: all .3s;
}
.navBar_03 .nav>ul>li>a:hover:after {
	width: 100%;
}
.navBar_03 .nav>ul>li:hover .sub-menu {
	display: block;
}
.navBar_03 .nav .sub-menu {
	display: none;
	position: absolute;
	padding: 0 15px;
	border-radius: 4px;
	background: #fff;
	list-style: none;
	text-align: left;
	z-index: 99999;
}
.navBar_03 .nav .sub-menu li {
	min-width: 100px;
}
.navBar_03 .nav .sub-menu li a {
	color: #999;
	font-size: 14px;
	display: block;
	padding: 10px 0;
	border-bottom: 1px solid var(--border-color);
	transition: all .3s;
}
.navBar_03 .nav .sub-menu li a:hover {
	color: #333;
}


/*
 * ------------------------------------------------------------------------------
 * 手机端侧边导航
 * ------------------------------------------------------------------------------
 */
.mobNavbar {
    padding: 15px 0;
}
.mobNavbar i {
    display: inline-block;
    padding: 4px 8px;
    background: #f9f9f9;
    color: #999;
    font-size: 12px;
    font-family: 'arial';
    margin-left: 5px;
}
.mobSide {}
.mobNav {}
.mobNav>ul>li {}
.mobNav>ul>li {
    border: 0;
}
.mobNav .current-menu-item {
    border: 0!important;
    position: relative;
}
.mobNav>ul>li>a {
    display: block;
    color: #4b5f72;
    border: 1px solid var(--border-color);
    font-size: 14px;
    padding: 5px;
    border-radius: 4px;
    margin-bottom: 5px;
}
.mobNav>ul>li>a:hover {
    color: #333;
}
.mobNav>ul .sub-menu {
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
    padding: 0;
    margin-bottom: 5px;
    border-top: 0;
}
.mobNav>ul .sub-menu li {
    width: 50%;
    float: left;
    padding: 0;
    border-radius: 4px;
    min-width: 50%;
    border-bottom: 0;
    text-align: center;
}
.mobNav>ul .sub-menu a {
    display: block;
    color: #8c979f;
    border: 1px solid var(--border-color);
    font-size: 13px;
    padding: 5px;
    margin: 2px;
}
.mobNav-user {}
.mobNav-user .author-count {}
.mobNav-user .author-count {
    padding-top: 15px;
}
.mobNav-user .author-name {
    color: #333;
    font-size: 15px!important;
}
.mobNav-user .roles-admin {
    color: #fff!important;
}
.mobNav-user .author-des {
    color: #999;
}
.mobNav-user .dropdown {
    list-style: none;
}
.mobNav-user .dropdown a {
    color: #999;
}
.no-login {}
.no-login span {
    color: #999;
}

/*
 * ------------------------------------------------------------------------------
 * 顶部搜索条样式
 * ------------------------------------------------------------------------------
 */
.search {}
.search input {
	height: 36px;
	border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    font-size: 12px;
    min-width: 220px;
}
.search input:focus {
	background: #fff;
	border: 1px solid #DCDFE6!important;
}
.search button {
	background: transparent;
	border: 0;
	cursor: pointer;
}
.search button i {
	color: #718d9b
}

/*
 * ------------------------------------------------------------------------------
 * 幻灯样式01
 * ------------------------------------------------------------------------------
 */
.slide_01 {
	padding: 30px 0;
}
.slide_01 .slide {
	height: 415px;
	overflow: hidden;
}
.slide_01 .slide .uk-slideshow-items {
	min-height: 415px!important;
}
.slide_01 .r_pic {}
.slide_01 .r_pic a {
	height: 200px;
}
.slide_01 .r_pic img {
	min-height: 100%;
	min-width: 100%;
}
.slide_01 .r_pic a .cover {
	color: #fff;
	font-size: 16px;
}
.slide_01 .r_pic a .cover  {
	margin-right: 3px;
}
.slide_01 .slide_dotnav {
	margin-bottom: 15px;
}
.slide_01 .slide_dotnav li {
	padding-left: 6px;
}
.slide_01 .slide_dotnav li a {
	width: 8px;
	height: 8px;
	background-color: rgba(255,255,255,.2);
	transition: all .3s;
}
.slide_01 .slide_dotnav .uk-active {}
.slide_01 .slide_dotnav .uk-active a {
	width: 30px;
	border-radius: 10px;
	background-color: rgba(255,255,255,.9);
}

/*
 * ------------------------------------------------------------------------------
 * 幻灯样式02
 * ------------------------------------------------------------------------------
 */
.slide_02 {}
.slide_02 .slide {
	box-shadow: 0 10px 15px -10px #75839c;
}

.fastlink {
    padding-top: 30px;
}
.fastlink .fastlink-item {
    margin: 0;
}
.fastlink .fastlink-item i {
    line-height: 46px;
    font-size: 40px;
    color: #999;
    transition: all .5s;
}
.fastlink .fastlink-item h3 {
    margin-top: 0;
    margin-bottom: 3px;
    font-size: 18px;
}
.fastlink .fastlink-item h3 a {
    transition: all .3s;
}
.fastlink .fastlink-item:hover i {
    color: var(--primary-color);
}
.fastlink .fastlink-item:hover h3 a {
    color: var(--primary-color);
}
/*
 * ------------------------------------------------------------------------------
 * 幻灯样式03
 * ------------------------------------------------------------------------------
 */
.slide_03 {
	width: 100%;
	height: 460px;
}
.slide_03 img {
	width: 100%;
}
.slide_03 .slide_text {
	color: rgba(255, 255, 255, 0.9);
    text-align: center;
    font-size: 25px;
    margin-bottom: 40px;
}
.slide_03 .search {
    padding: 0 15px;
}
.slide_03 .search input {
    padding-left: 15px;
    width: 601px;
    height: 49px;
	border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.2);
    color: #FFF;
    font-size: 15px;
    -webkit-text-fill-color: rgba(255, 255, 255, 0.8);
}
.slide_03 .search input:focus {
	border: 1px solid rgba(255, 255, 255, 0.2)!important;
}
.slide_03 .search button {
	margin-left: 5px;
	background: var(--primary-color);
	height: 49px;
	color: #fff;
	padding: 0 20px;
	font-size: 16px;
	letter-spacing: 3px;
	transition: all .3s;
}
.slide_03 .search button:hover {
	background: #5cadff
}
.slide_03 .search button i {
	color: #fff;
	margin-right: 3px;
}

.slide_03 .search_tags {
	margin-top: 30px;
}
.slide_03 .search_tags i {
	margin-right: 4px;
}
.slide_03 .search_tags a {
	padding: 0 10px;
}

/*
 * ------------------------------------------------------------------------------
 * 推荐分类样式
 * ------------------------------------------------------------------------------
 */
.recommendCat {}
.recommendCat .item {
	transition: all .3s;
    box-shadow: -3px 0 10px #f1f6fb;
    height: 120px;
    background: #000;
}
.recommendCat .item img {
    min-height: 100%;
    opacity: .3;
}
.recommendCat .item p {
    font-size: 18px;
   color: #fff;
}
.recommendCat .item .cover {
    min-width: 100%;
}
/*
 * ------------------------------------------------------------------------------
 * 公用标签样式
 * ------------------------------------------------------------------------------
 */
.module-title {
	padding: 15px 0;
}
.module-title span {
	color: #333;
	font-size: 20px;
	margin: 0 15px;
	min-width: 85px;
}
.module-title span:after {
	content: '';
	position: absolute;
	left: -15px;
	top: 4px;
	height: 75%;
	width: 4px;
	border-radius: 3px;
	background-color: var(--primary-color);
	-webkit-box-shadow: 2px 0 5px -1px var(--primary-color);
	box-shadow: 2px 0 5px -1px var(--primary-color);
}
.module-title em {
	font-style: normal;
}
.module-title .cat-nav {}
.module-title .cat-nav a {
    display: block;
	color: #999;
	margin-left: 30px;
	padding: 4px 8px;
	border-radius: 4px;
	transition: all .3s;
}
.module-title .cat-nav a:hover {
	background: var(--primary-color);
	color: #fff;
}

/*
 * ------------------------------------------------------------------------------
 * 公用标签样式
 * ------------------------------------------------------------------------------
 */
.tags {
	color: #aaa;
}
.tags a {
	display: inline-block;
    background: var(--primary-color);;
    font-size: 12px;
    color: #fff;
	padding: 2px 6px;
	margin-right: 5px;
	border-radius: 3px;
	transition: all .3s;
	opacity: .3;
}
.tags a:hover {
	opacity: 1;
	color: #fff;
}
.tags .item:hover a {
	opacity: 1;
}
.home-tags .item {
	transition: all .3s;

}
.home-tags .item:hover {
	-webkit-box-shadow: 0 0 10px rgba(0,0,0,.05);
    box-shadow: 0 0 10px rgba(0,0,0,.05);
    -webkit-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    transform: translateY(-3px);
}
/*
 * ------------------------------------------------------------------------------
 * 博客列表样式
 * ------------------------------------------------------------------------------
 */
.blog {}
.blog .module-title span {
	font-size: 16px;
}
.blog .item {
	transition: all .3s;
	padding: 20px;
}
.blog .item:last-child {
	border-bottom: 0;
}
.blog .item:hover {
	background: #F7F9FA80;
}
.blog .item .thumb {
	width: 240px;
	height: 168px;
}
.blog .item .thumb img {
	height: 100%;
	min-width: 100%;
	max-width: none;
}
.blog .item .title {
	font-size: 18px;
	transition: all .3s;
}
.blog .item .title:hover {
	color: var(--primary-color);
}
.blog .item .desc {
	margin: 15px 0;
	font-size: 14px;
}
.blog .item .info {}
.blog .item .info .avatar {
    line-height: 0;
    width: 20px;
    height: 20px;
}
.item-top {
	max-height: 220px;
}
.item-top .uk-overlay-primary {
	background: rgba(9,9,9,.6);
}

/*
 * ------------------------------------------------------------------------------
 * 卡片样式
 * ------------------------------------------------------------------------------
 */
.card {}
.card .module-title {
	padding: 0;
}
.card .item {
	background: #fff;
	transition: all .3s;
}
.card .item:hover {
	-webkit-box-shadow: 0 0 10px rgba(0,0,0,.05);
    box-shadow: 0 0 10px rgba(0,0,0,.05);
    -webkit-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    transform: translateY(-3px);
}
.card .item .thumb {
	height: 185px;
}
.card .item .thumb img {
    min-height: 100%;
}
.card .item .content {}
.card .item .content .title {
	letter-spacing: .5px;
	min-height: 45px;
}
.card .item .content .info .avatar {
    line-height: 0;
    width: 20px;
    height: 20px;
}
.more {
	color: #fff;
	width: 140px;
	margin: 0 auto;
	text-align: center;
	background: var(--primary-color);
	box-shadow: 0 3px 10px -6px var(--primary-color);
	color: #fff;
	padding: 8px 0;
	font-size: 15px;
	letter-spacing: 1px;
	transition: all .3s;
}
.more:hover {
	color: #fff;
	transform: translateY(-3px);
	box-shadow: 0 6px 10px -5px var(--primary-color);
}
.more i {
	display: inline-block;
	transition: all .3s;
}
.more:hover i {
	transform: translateX(5px);
}

/*
 * ------------------------------------------------------------------------------
 * 专题样式
 * ------------------------------------------------------------------------------
 */
.topic {}
.topic .item {
	padding: 25px;
	margin-top: 20px;
	transition: all .3s;
}
.topic .item:hover {
	transform: translateY(-3px);
	box-shadow: 0px 6px 10px -5px #dddfe2
}
.topic .item .content {
	width: 300px;
}
.topic .item .content h3 {
	margin: 0;
}
.topic .item .content h3 a {
	font-size: 18px;
}
.topic .item .content ul {
	list-style: none;
}
.topic .item .content ul li {
	padding: 10px;
    font-size: 14px;
}
.topic .item .content ul li:nth-child(odd) {
    background: hsla(0,0%,84.7%,.16);
}
.topic .item .content ul li a {
    display: block;
    line-height: 22px;
    overflow: hidden;
    color: #7c808a;
    transition: all .3s;
}
.topic .item .content ul li a:hover {
	color: var(--primary-color);
}
.topic .item .thumb {
	height: 260px;
	width: 220px;
	transform: translateY(-50px);
	transition: all .3s;
}

.topic .item .thumb img {
	height: 100%;
	min-width: 100%;
	max-width: none;
}
.topic .item .view {
	color: var(--primary-color);
}
.topic .item .view i {
	margin-left: 5px;
}
/*
 * ------------------------------------------------------------------------------
 * 侧边栏样式
 * ------------------------------------------------------------------------------
 */
.sidebar {}
.sidebar .module-title span {
	font-size: 16px;
	color: #666;
}

/*
 * ------------------------------------------------------------------------------
 * 侧边栏作者样式
 * ------------------------------------------------------------------------------
 */
.side-author {
	padding: 20px;
}
.side-author .avatar {
	display: inline-block;
	border-radius: 50%;
	overflow: hidden;
}
.side-author .author-name {
	font-size: 16px;
}
.side-author span {
	margin-top: 5px;
}
.roles-admin {
	background: #000;
	color: #fff;
	font-size: 12px;
	padding: 0px 4px 1px 4px;
	border-radius: 3px;
	transform:scale(.9);
	-webkit-transform:scale(.9);
	-moz-transform:scale(.9);
}
.author-des {
	background: var(--bg-color);
}
.author-count {
	color: #333;
	padding-top: 10px;
	font-family: arial;
}
.author-count span {
	font-size: 12px;
	color: #aaaeb3;
}
.author-count-item {
	border-right: 1px solid var(--border-color);
}
.author-count-item:last-child {
	border: 0;
}

/*
 * ------------------------------------------------------------------------------
 * 侧边栏热门文章样式
 * ------------------------------------------------------------------------------
 */
.sideHot {}
.sideHot .thumb {
	width: 100px;
	height: 75px;
}
.sideHot .thumb img {
	height: 100%;
	min-width: 100%;
	max-width: none;
}
.sideHot .title {
	overflow:hidden; 
	text-overflow:ellipsis;
	display:-webkit-box; 
	-webkit-box-orient:vertical;
	-webkit-line-clamp:2; 
}
.sideHot .title a {
    font-size: 15px;
    letter-spacing: .5px;
	overflow:hidden; 
	text-overflow:ellipsis;
	display:-webkit-box; 
	-webkit-box-orient:vertical;
	-webkit-line-clamp:2; 
}
/*
* ------------------------------------------------------------------------------
* 侧边栏弹窗样式
* ------------------------------------------------------------------------------
*/
.helper {
	letter-spacing: .5px;
}
.helper p {
	max-width: 65%;
}
.helper .btn {
	padding: 6px 10px;
	font-size: 13px;
	line-height: normal;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	background: var(--primary-color);
	color: #fff;
	transition: all .3s;
	-webkit-box-shadow: 0px 4px 8px -4px var(--primary-color);
	box-shadow: 0px 4px 8px -4px var(--primary-color);
}
.helper .btn:hover {
	transform: translateY(-3px);
}
.helper .btn i {
	font-size: 14px;
	margin-right: 5px;
}
.helper .helper-thumb {
	position: absolute;
	right: 0;
	bottom: 0;
}

/*
* ------------------------------------------------------------------------------
* 侧边栏最新评论样式
* ------------------------------------------------------------------------------
*/
.new-comment {
	margin: 0;
	max-height:360px;
	list-style: none;
}

.new-comment li {
	padding-bottom: 15px;
	margin-bottom: 15px;
	font-size: 13px;
}

.new-comment li>.avatar {
	margin-right: 4px
}
.new-comment li>.avatar img {
	border-radius: 4px;
}
.new-comment li:last-child {
	border: 0
}

.new-comment li a {
	color: #999;
	line-height: 26px;
}

.new-comment li .content {
	padding: 6px 10px;
}

.new-comment li p {
	margin: 10px 0 0
}

.new-comment::-webkit-scrollbar {
	width: 4px;
	height: 4px;
	background-color: #fff;
}

.new-comment::-webkit-scrollbar-track {
	background-color: #fff;
}

.new-comment::-webkit-scrollbar-thumb {
	background-color: #eee;
	border-radius: 10px
}

/*
* ------------------------------------------------------------------------------
* 评论样式
* ------------------------------------------------------------------------------
*/
.comments {}

.comments-title {}
.comments-title span {
	font-size: 16px;
}
.comment-list {
	padding: 15px
}
.comment-list .children {
	margin-left: 25px;
	padding: 0;
}
.comment-list .children .comment {
	border-left: 6px solid var(--border-color)!important;
	padding-left: 20px;
}
.comment-list .children .comment-main {
	border: 0;
	padding-top: 0;
}
.comment-list .children .children {
	margin-bottom: 0
}
.comment-from {
	margin-bottom: 30px
}
.comment-from .btn {
	font-size: 13px;
	padding: 0px 15px;
	line-height: 32px;
	background: var(--primary-color);
	color: #fff;
}
.comment-from .btn:hover {
	transform: none
}
.comment-main {
	padding-top: 15px;
	border-top: 1px solid var(--border-color)
}
.comment-head {
	font-size: 12px
}
.comment-head a {
	font-size: 14px;
	color: #999;
}
.comment-head .data {
	color: #bdbdbd;
}
.comment-head .data a {
	font-size: 12px;
	color: #bdbdbd;
}
.comment-head .avatar {
	margin-right: 3px
}
.comment-content {
	padding: 25px 0 0 25px;
	font-size: 14px;
}
.comment-content p {
	margin: 0
}

/*
* ----------------------------------------------------------------------------
* 分页样式
* ----------------------------------------------------------------------------
*/
.fenye {}
.prev, .next {}

.fenye .page-numbers {
	background: #fff;
	display: inline-block;
	padding: 7px 15px;
	border-radius: 4px;
	margin: 0 3px;
	color: #666;
	transition: all .3s;
	border: 1px solid var(--border-color)
}

.fenye .current {
	background: var(--primary-color);
	color: #fff;
	border:none;
	transition: all .3s
}
.fenye .current:hover {
	border: none!important;
	-webkit-box-shadow: 0 5px 10px 0 rgba(16, 110, 253, .3)!important;
	box-shadow: 0 5px 10px 0 rgba(16, 110, 253, .3)!important;
}
.fenye .page-numbers:hover {
	border: 1px solid var(--border-color);
	transform: translateY(-3px);
	-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .05);
	box-shadow: 0 0 10px rgba(0, 0, 0, .05)
}

/*
 * ------------------------------------------------------------------------------
 * 内容页样式
 * ------------------------------------------------------------------------------
 */

.single-content {}
.single-content a {
	text-decoration: underline;
}
.single-content .title {}
.single-content .title span {
    margin-bottom: 0;
    padding-bottom: 15px;
    display: inline-block;
    border-bottom: 2px solid var(--primary-color);
}
.single-content h2 {
	position: relative;
	padding-left: 20px;
	margin-bottom: 40px!important;
	font-size: 20px!important;
}
.single-content h2:after {
	content: '';
    position: absolute;
    left: 0;
    top: 5px;
    height: 80%;
    width: 5px;
    background: var(--primary-color);
    box-shadow: 3px 0px 10px -1px var(--primary-color);
    border-radius: 2px;
}
.single-content h2:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -15px;
    height: 2px;
    width: 100%;
    border-bottom: 2px dashed var(--border-color);
}

.single-content blockquote {
    border-left: 5px solid var(--primary-color);
    font-style: normal;
    font-size: 15px;
    padding-left: 20px;
    color: #888;
    line-height: 24px;
    letter-spacing: .5px;
    padding: 0 20px;
}
.single-content blockquote p {
	margin: 12px 0;
    color: #333;
    font-size: 19px;
}
.single-content blockquote cite {
	font-style: normal;
    color: #aaa;
}
.single-content ul {
	padding: 0
}
.single-content li {
	line-height: 46px;
	border-bottom: 1px dashed #f4f4f4;
	list-style: none;
	padding-left: 20px;
	position: relative
}
.single-content li:after {
	content: '';
	width: 6px;
	height: 6px;
	background: var(--primary-color);
	border-radius: 50%;
	display: block;
	position: absolute;
	left: 0;
	top: 20px;
}
.single-content pre {
	background: #262626;
    color: #eee;
    border-left: 5px solid #006eff;
    cursor: text;
    font-size: 13px;
}

.single-content pre code {}

.single-content .wp-block-button a {
	text-decoration: none;
	font-size: 16px;
}
.single-content table {
	border: 1px solid #eee;
}

.single-content table th {
	color: #222;
	font-weight: bold;
	font-size: 15px!important;
	border-right: 1px solid #eee;
}

.single-content table td {
	border-right: 1px solid #eee;
}
.single-down {
    padding: 20px;
}
.single-down .thumb {
    width: 400px;
    height: 290px;
}
.single-down .thumb img {
    width: 100%;
    min-height: 100%;
	cursor:pointer
}
.single-down .uk-dotnav {
    text-align: center;
    display: block;
    position: absolute;
    bottom: 0;
    width: 100%;
}
.single-down .uk-dotnav li {
	margin: 0 2px;
	padding: 0;
	display: inline-block
}
.single-down .uk-dotnav li a {
	display: inline-block;
	width: 8px;
	height: 8px;
	background: rgba(225, 225, 225, 0.3);
	transition: all .3s
}
.single-down .uk-dotnav .uk-active a {
	width:18px;
	border-radius: 4px!important;
	background:#fff
}
.down-info {}
.down-info h1 {
    font-size: 22px;
}
.down-info ul {
    padding: 20px;
    margin: 20px 0;
    background: #f7f9fa
}
.down-info ul li {
    display: flex;
    border-bottom: 1px dashed #e2eaf5;
    padding-bottom: 8px;
    margin-bottom: 8px;
    font-size: 13px;
    color: #606266;
}
.down-info ul li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border: 0;
}
.down-info  .down-foot {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.down-info  .down-foot .down-btn {
    flex: 1;
}
.down-info  .down-foot .down-btn button {
    cursor: pointer;
    font-size: 16px;
    letter-spacing: .5px;
    padding: 10px 25px;
    background: var(--primary-color);
    border-radius: 4px;
    border: 0;
}
.down-info  .down-btn .theme-down {
    color: #fff;
    margin-right: 15px;
}
.down-info  .down-btn .demo-url {
    color: #606266;
    background: var(--bg-color)!important;
    padding: 12px 30px;
    border-radius: 4px;
}
.down-foot .xshare {
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    align-items: center;
}
.down-foot .xshare .xshare-title {
    display: inline-block;
    font-size: 14px;
}
.down-foot .xshare a {
    line-height: 30px;
    margin-left: 10px;
    border: 0;
    height: auto;
    color: #a5acb0;
}

.down-pop {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    background: rgba(0, 0, 0, 0.35)
}
.down-pop .down-box {
    max-width: 360px;
    margin: 10% auto 0 auto;
    background-color: #fff;
    border-radius: 20px;
    background-image: url('https://www.supremeusa.cc/wp-content/uploads/2020/12/202012151554343.png');
    background-repeat: no-repeat;
    background-size: 100%;
    overflow: hidden;
    position: relative;
}
.down-pop .down-box h3 {
    text-align: center;
    font-size: 20px;
    color: #fff;
    padding: 30px 0;
    margin: 0;
}
.down-pop .down-main {
    width: 80%;
    margin: 0 auto;
    border-radius: 6px;
    background-color: #fff;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 5px 10px -4px #eee;
}
.down-pop .down-main img {
    width: 150px;
    padding: 20px 0 10px 0;
    display: inline-block;
}
.down-main .desc {
    margin-bottom: 20px;
}
.down-pop .down-main p {
    margin: 0;
}
.down-pop .down-main p:last-child {
    font-size: 13px;
    color: #909399;
}
.down-pop .on-btn {
    width: 80%;
    display: block;
    margin: 30px auto;
    text-align: center;
    background-color: var(--pm-c) ;
    background-image: linear-gradient(90deg, #be7ef1, #5b60f9);
    border-radius: 20px;
    padding: 10px 0;
    color: #fff;
    box-shadow: 0 5px 10px -5px rgb(170, 120, 242)
}
.down-pop .down-pop-close {
    position: absolute;
    top: 0;
    right: 0;
    margin: 20px 36px;
    color: #fff;
    cursor: pointer;
}

#ajaxBtn {}
#ajaxBtn a {
    display: inline-block;
    color: #fff;
    width: 140px;
    margin: 0 auto;
    text-align: center;
    background: var(--primary-color);
    box-shadow: 0 3px 10px -6px var(--primary-color);
    color: #fff;
    padding: 8px 0;
    border-radius: 4px;
    font-size: 15px;
    letter-spacing: 1px;
    transition: all .3s;
}
.single-foot {}
.single-foot .btn {
	background: var(--primary-color);
    color: #fff;
    padding: 8px 15px;
    display: inline-block;
    border-radius: 4px;
    margin: 0 5px;
    box-shadow: 0 4px 10px -5px var(--primary-color);
	font-size: 13px;
	transition: all .3s;
	letter-spacing: .5px;
}
.single-foot .btn:hover {
	opacity: .8;
}
.single-down {}
.single-down-btn {
    background: var(--primary-color);
    color: #fff;
    display: inline-block;
    border-radius: 4px;
    margin: 0 5px;
    box-shadow: 0 4px 10px -5px var(--primary-color);
    font-size: 15px;
    transition: all .3s;
    letter-spacing: 1px;
}


/*
 * ------------------------------------------------------------------------------
 * 用户中心样式
 * ------------------------------------------------------------------------------
 */
.user-bg {
    height: 260px;
    overflow: hidden;
}
.user-bg img {
    width: 100%;
    min-height: 100%;
    max-width: none;
}
.user-main  {
    transform: translateY(-65px)!important;
}
.user-nav {
        padding: 15px 0;
}
.user-nav li {
    display: inline-block;
    margin-right: 15px;
}
.user-nav li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    padding: 6px 10px;
    border-radius: 4px;
}
.user-nav .active {}
.user-nav .active a {
    color: #fff;
    background: var(--primary-color);
}
.user-data {}
.user-data ul {
	font-family: Arial;
	list-style: none
}
.user-data ul li {
    padding: 10px 0;
    margin-bottom: 10px;
}
.user-data ul li:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
}
.user-comment {
    padding: 30px;
}
.user-comment-content {
	padding: 20px;
	width: 95%;
}
.user-comment-item {
	margin-bottom: 20px;
	padding-bottom: 20px
}
.user-set {
    padding: 20px;
}
.user-set-head {
	padding-bottom: 20px;
}
.user-set-head  .user-name {
	margin-top: 5px;
}
.user-set-head .upload-form {
    background: var(--primary-color);
    position: relative;
}
.user-set-head .upload-form span {
    color: #fff;
}
.user-set-head .upload-avatar {
    width: 75px;
    color: #fff;
    font-size: 14px;
    opacity: 0;
    padding: 6px 10px;
}
.user-user-submit {
	font-size: 15px;
	padding: 6px 15px;
}
.user-user-submit {
    color: #fff;
    background: var(--primary-color);  
}


/*
 * ------------------------------------------------------------------------------
 * 登录注册页面
 * ------------------------------------------------------------------------------
 */
.page-login {
	max-width: 1000px;
	margin: 6% auto;
}

.login-main {
	box-shadow: 0px 30px 30px -10px #dadcdd;
}

.login-bg {
	width: 520px;
	border-right: 1px solid var(--border-color);
}

.login-bg img {
	min-height: 100%;
	max-width: none;
}
.login-bg span {
	color: #fff;
}
.login-form {
	padding: 30px;
}

.login-form-title {
	padding-bottom: 30px;
}

.login-form-title span {
	color: #444;
	font-family: arial;
	font-size: 28px;
}

.login-form-title a {
	color: var(--primary-color);
}

.login-button {
	background: var(--primary-color);
	color: #fff;
	border: 0;
	padding: 10px;
	font-size: 15px;
	letter-spacing: 1px;
	cursor: pointer;
}
.login-social {
    padding-top: 25px;
    font-family: arial;
}
.login-social a {
    background: #eee;
    padding: 8px 10px 6px 10px;
    font-size: 13px;
    color: #999;
    border-radius: 4px;
    transition: all .3s;
    margin-right: 5px;
}
.login-social a:hover {
	background: var(--primary-color);
	color: #fff;
}
/*腾讯验证码*/

.login_button {
	line-height: 38px;
	border-radius: 3px;
	cursor: pointer;
	color: #555;
	background: #f5f5f5;
	border: 1px solid #ebebeb;
	font-size: 13px;
	margin-bottom: 25px;
	text-align: center;
	transition: .5s;
	letter-spacing: 1px
}

.TCaptcha-icon {
	position: relative;
	display: inline-block;
	width: 26px;
	height: 26px;
	vertical-align: middle;
	margin-right: 5px;
	box-sizing: content-box
}

.TCaptcha-icon:after,
.TCaptcha-icon:before {
	-webkit-animation: TCaptcha-icon 2s linear infinite;
	animation: TCaptcha-icon 2s linear infinite
}

.TCaptcha-icon:before {
	position: absolute;
	top: 2px;
	left: 3px;
	width: 20px;
	height: 20px;
	border-radius: 26px;
	background: #06b99b;
	opacity: .2;
	content: ""
}

.TCaptcha-icon i {
	position: absolute;
	z-index: 1;
	top: 7px;
	left: 8px;
	width: 10px;
	height: 10px;
	border-radius: 10px;
	background: #49ccb6
}

@keyframes TCaptcha-icon {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1)
	}
	25% {
		-webkit-transform: scale(1.2);
		transform: scale(1.2)
	}
	50% {
		-webkit-transform: scale(1);
		transform: scale(1)
	}
	75% {
		-webkit-transform: scale(.8);
		transform: scale(.8)
	}
	to {
		-webkit-transform: scale(1);
		transform: scale(1)
	}
}
/*
* ------------------------------------------------------------------------------
* 单页合集样式
* ------------------------------------------------------------------------------
*/

.page-about {}

.page-menu {}

.page-menu ul {}

.page-menu ul li {
	padding: 20px 0;
	margin: 0!important;
	border-bottom: 1px solid var(--border-color);
	text-indent: 20px
}

.page-menu ul li:last-child {
	border: none
}

.page-menu ul li a {
	display: block;
	color: #888;
	font-size: 15px;
}

.page-menu .current-menu-item {
	background: #fafafa;
}

.page-menu .current-menu-item a {
	position: relative;
	font-weight: bold;
	color: var(--primary-color);
}

.page-menu .current-menu-item a::after {
	content: '';
	position: absolute;
	width: 5px;
	height: 100%;
	background: var(--primary-color);
	left: 0;
	box-shadow: 3px 0px 10px -1px var(--primary-color);
	border-radius: 2px;
}

.page-main {}

/*
 * ------------------------------------------------------------------------------
 * 首页弹窗样式
 * ------------------------------------------------------------------------------
 */
.home-modal {
    background: transparent;
    max-width: 480px!important;
}
.home-modal-bg {
    max-height: 160px;
}
.home-modal-main {
    background: #fff;
    margin: 80px auto 0 auto;
    width: 80%;
    border-radius: 20px;
    min-height: 200px;
}
.home-modal-bottom {

}
.home-modal-bottom ul {
    list-style: none;
    padding: 0;
}
.home-modal-bottom ul li {
    height: 20px;
    margin: 0 auto;
    border-radius: 4px;
    margin-top: -15px;
    transition: all .2s;
}
.home-modal-bottom ul li:nth-child(1) {
    width: 95%;
    background: rgba(255, 255, 255, 0.4);
}
.home-modal-bottom ul li:nth-child(2) {
    width: 90%;
    background: rgba(255, 255, 255, 0.2);
}
.home-modal-btn {
    background: var(--primary-color);
    color: #fff;
    padding: 6px 30px;
    -webkit-box-shadow: 0px 7px 12px -8px var(--primary-color);
    box-shadow: 0px 7px 12px -8px var(--primary-color);
    transition: all .3s;
}
.home-modal-btn:hover {
    transform: translateY(-2px);
}
.home-modal-close {
    cursor: pointer;
    background: var(--bg-color);
    color: #ddd;
    box-shadow: none;
}


/*
* ------------------------------------------------------------------------------
* 标签大全样式
* ------------------------------------------------------------------------------
*/
.page-tags-item {
	padding: 20px 0;
	transition: all .3s
}
.page-tags-item:hover {
	-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .05);
	box-shadow: 0 0 10px rgba(0, 0, 0, .05);
	-webkit-transform: translateY(-3px);
	-ms-transform: translateY(-3px);
	transform: translateY(-3px);
}
.page-tags-item .name {
	padding: 0 20px;
	color: #333;
	font-size: 15px;
}

.page-tags-item .name:before {
	content: '';
	position: absolute;
	left: 0;
	height: 100%;
	width: 5px;
	background: var(--primary-color);
	box-shadow: 3px 0px 10px -1px var(--primary-color);
	border-radius: 2px;
}

.page-tags-item li {
	margin: 5px 20px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.page-tags-item li a {
	color: #888;
	font-size: 15px
}

.page-tags-item li a:hover {
	color: #000
}

.page-tags-li {
	padding: 20px;
}

.page-tags-li a {
	display: inline-block;
	background: #f2f6fc;
	color: #666;
	padding: 5px 10px;
	margin: 3px 5px;
}
/*
* ------------------------------------------------------------------------------
* 单页合集样式
* ------------------------------------------------------------------------------
*/

.page-about {}

.page-menu {}

.page-menu ul {}

.page-menu ul li {
	padding: 20px 0;
	margin: 0!important;
	border-bottom: 1px solid var(--border-color);
	text-indent: 20px
}

.page-menu ul li:last-child {
	border: none
}

.page-menu ul li a {
	display: block;
	color: #888;
	font-size: 15px;
}

.page-menu .current-menu-item {
	background: #fafafa;
}

.page-menu .current-menu-item a {
	position: relative;
	font-weight: bold;
	color: #2c63ff!important
}

.page-menu .current-menu-item a::after {
	content: '';
	position: absolute;
	width: 5px;
	height: 100%;
	background: #2c63ff;
	left: 0;
	box-shadow: 3px 0px 10px -1px #2c63ff;
	border-radius: 2px;
}

.page-main {}
/*
 * ------------------------------------------------------------------------------
 * 友链样式
 * ------------------------------------------------------------------------------
 */
.link {
	border: 1px dashed #e6eef2
}
.link ul {
	list-style: none;
	padding: 12px 15px;
}
.link ul li {
	display: inline-block;
	font-size: 14px;
}
.link ul li a {
	color: #999;
	margin-right: 15px;
	font-size: 13px;
	transition: all .3s;
}
.link ul li a:hover {
	color: #333;
}
/*
 * ------------------------------------------------------------------------------
 * 底部样式
 * ------------------------------------------------------------------------------
 */
.foot {}
.foot ul {}
.foot ul li {
	display: inline-block;
	margin-right: 30px;
}
.foot ul li a {
	font-size: 15px;
	color: #666;
}
.foot i {
	margin-left: 15px;
	color: #999;
	font-size: 20px;
	transition: all .3s;
}
.foot i:hover {
	color: #333;
}
.foot-cop {
	padding-top: 15px;
}
.foot-cop span {
	color: #aaaeb3;
	font-size: 13px;
	position: relative;
	padding-right: 15px;
	margin-right: 10px;
}
.foot-cop a {
	color: #aaaeb3
}
.foot-cop span:after {
    content: '';
    width: 1px;
    height: 11px;
    background: #aaaeb3;
    position: absolute;
    top: 5px;
    right: 0;
    opacity: .4;
}
.foot-cop span:last-child:after {
	display: none;
}


/*
* ------------------------------------------------------------------------------
* 浏览器滚动条样式
* ------------------------------------------------------------------------------
*/
::-webkit-scrollbar {
	width: 10px;
	height: 10px;
	background-color: #fff;
}

::-webkit-scrollbar-track {
	background-color: #fff;
}

::-webkit-scrollbar-thumb {
	background-color: var(--primary-color);
	border-radius: 10px
}
/*
* ------------------------------------------------------------------------------
* 底部社交工具样式
* ------------------------------------------------------------------------------
*/
.tabtst {
  overflow: hidden;
  width: 100%;
  height: 55px;
  cursor: pointer;
  /* border-bottom: 1px solid #535353;*/
  margin-bottom: 20px;
}
.tabtst li {
  float: left;
  padding: 0 20px;
  text-align: center;
  line-height: 53px;
  font-size: 18px;
  color: #ccc;
  list-style: none;
}
.tabtst li.on {
  border-bottom: 2px solid #40a9ff;
  color: #929191;
  line-height: 53px;
  font-weight: 700;
}
/*
* ------------------------------------------------------------------------------
* 通知样式修改
* ------------------------------------------------------------------------------
*/
.uk-notification-message {
	color: #fff;
	font-size: 14px
}
.uk-notification-message .uk-notification-close {
	display: none!important
}
.uk-notification-message-primary {}
.uk-notification-message-warning {
	background:#faa05a
}
.uk-notification-message-success {
	background:#32d296
}
.uk-notification-message-danger {
	background:#f0506e
}


@media screen and (max-width: 600px) {
    .slide_01 {
        padding: 15px 0;
    }
    .slide_01 .slide {
        height: 160px;
    }
    .slide_01 .slide img {
        height: 100%;
    }
    .slide_01 .slide .uk-slideshow-items {
    	height: 160px;
    	min-height: auto!important;
    }
    .wp {
    	width: 100%;
    }
    .blog .item .title {
        margin-bottom: 10px;
        font-size: 15px;
    }
    .blog .item .thumb {
        width: 100%;
        height: 100px;
    }
    .blog .item .thumb img {
        max-width: none;
    }
    .slide_03 {
        height: 380px;
    }
    .slide_03 img {
        height: 100%;
        min-width: 100%;
        max-width: none;
        width: auto;
    }
    .slide_03 .slide_text {
        font-size: 20px;
    }
    .slide_03 .search input {
        height: 40px;
    }
    .slide_03 .search button {
        height: 40px;
    }

    .navBar_02 {
        padding: 0 15px;
    }
    .navBar_02 .topNav ul {
        max-width: 200px;
    }
    .navBar_02 .nav>ul {
        white-space: nowrap;
        overflow-x: overlay;
    }
    .navBar_02 .nav>ul::-webkit-scrollbar {
    	width: 10px;
    	height: 0px;
    	background-color: #fff;
    }

    .navBar_02 .nav>ul::-webkit-scrollbar-track {
    	background-color: #fff;
    }

    .navBar_02 .nav>ul::-webkit-scrollbar-thumb {
    	background-color: var(--primary-color);
    }
    .page-login {
        margin: 6% 15px;
    }
    .user-nav {
        padding-top: 0;
    }
    .user-nav li a {
        color: #666;
    }
    .user-nav {
        white-space: nowrap;
        overflow-x: scroll;
    }
    .user-nav::-webkit-scrollbar {
    	width: 10px;
    	height: 0;
    	background-color: #fff;
    }
    .user-comment {
        padding: 15px;
    }
    .user-comment-item {
        overflow: hidden;
    }
    .home-modal-main {
        width: 90%;
        margin: 40px auto 0 auto;
    }
    .home-modal-btn {
        padding: 6px 20px;
        font-size: 13px;
    }
    .recommendCat .item {
        height: 100px;
    }
    .module-title .cat-nav a {
    	margin-left: 10px;
    }
    footer {
        padding: 30px 0!important;
    }
    
    .single-down .thumb {
        width: 100%;
    }
    .down-info {
        margin-top: 10px;
        margin-left: 0!important;
    }
    .down-info .down-foot {
        display: block;
    }
    .down-info .down-foot .down-btn {
        width: 100%;
    }
    .down-foot .xshare {
        display: block;
        margin-top: 10px;
    }
    .down-info .down-foot .down-btn button {
        width: 100%;
    }
    .down-info .down-btn .demo-url {
        display: block;
        width: 100%;
        text-align: center;
        padding: 12px 0;
        margin-top: 10px;
    }
}