@charset "utf-8";

:root {
    --pm-c: #00a4c4;
    --br-c: #eee;
    --bg-c: #f7f7f7;
    --md-c: #909399;
}

html,body {
	font-size: 14px;
	font-family: arial;
	color: #303133;
}
* {
	line-height: normal;
}
img {
    image-rendering: -moz-crisp-edges;
    image-rendering: -o-crisp-edges;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -ms-interpolation-mode: nearest-neighbor;    
}

ul,ol {
	padding: 0;
	margin: 0;
	list-style: none;
}

a,a:hover {
	line-height: normal;
	color: #303133;
	font-size: 14px;
	text-decoration: none;
}
.bg-gradient {
	background-image: -webkit-linear-gradient(90deg, #0065cd 0%, #00c7c0 100%);
	background-image: -moz-linear-gradient(90deg, #0065cd 0%, #00c7c0 100%);
	background-image: -o-linear-gradient(90deg, #0065cd 0%, #00c7c0 100%);
	background-image: -webkit-gradient(linear, 0 100%, 0 0, from(#0065cd), to(#00c7c0));
	background-image: linear-gradient(90deg, #0065cd 0%, #00c7c0 100%), linear-gradient(#33d4e2, #33d4e2);
}
.cover {
	z-index: 10;
	color: #fff;
	position: absolute;
	bottom: 0;
	width: 100%;
} 
.cover span {
	display: block;
	padding: 10px;
}
.icon-star {
	height: 16px;
	width: 80px;
	position: relative;
	background-image: url(../images/icon-star-bg.png);
}
.icon-star::after {
	content: '';
	height: 100%;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	background-image: url(../images/icon-star.png);
	background-position: 0 -16px;

}
.star-1::after {
	width: 16px;
}
.star-2::after {
	width: 32px;
}
.star-3::after {
	width: 48px;
}
.star-4::after {
	width: 64px;
}
.star-5::after {
	width: 100%;
}
.line-2 {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	-webkit-line-clamp: 2;
}
.line-3 {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	-webkit-line-clamp: 3;
}
.line-4 {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	-webkit-line-clamp: 4;
}
.uk-flex-cover {
	flex: 1;
	overflow: hidden;
	position: relative;
}
.icon {
	overflow: hidden;
	position: relative;
}



.header {
	overflow: hidden;
}
.header>div {
	height: 168px;
	position: relative;
	padding: 0;
}
.header .logo {
	position: absolute;
	top: 50%;
	transform: translate(0,-50%);
	left: 0;
}
.header .search {
	width: 335px;
	height: 40px;
	background-color: #ffffff30;
	border-radius: 20px;
	position: absolute;
	right: 0;
	top: 15px;
}
.header .search input {
	background: transparent;
	border: 0;
	width: 100%;
	height: 100%;
	color: #fff;
	outline: none;
	text-indent: 20px;
	font-size: 12px;
}

.header .search input::-webkit-input-placeholder {
  color: #fff;
}
.header .search button {
	cursor: pointer;
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translate(0,-50%);
	display: block;
	width: 20px;
	height: 20px;
	background-image: url(../images/search.png);
	background-color: transparent;
	border: 0;
}

.header .nav {
	position: absolute;
	bottom: 0;
	right: 0;
	background: #fff;
	height: 100px;
}
.header .nav:before {
	content: '';
	display: block;
	width: 0;
	height: 0;
	border: 50px solid;
	border-color: transparent #fff #fff transparent;
	position: absolute;
	left: -100px;
	top: 0;
}
.header .nav:after {
	content: '';;
	display: inline-block;
	width: 500px;
	height: 100px;
	background: #fff;
	position: absolute;
	top: 0%;
	right: -500px;
}
.header .nav ul {
	padding: 15px 0;
}
.header .nav ul li {
	display: inline-block;
	margin-left: 40px;
}
.header .nav ul li:first-child {
	margin-left: 30px;
}
.header .nav ul li a {
	color: #333;
	text-align: center;
	display: block;
}
.header .nav ul li a:before {
	content: '';
	display: inline-block;
	position: relative;
	width: 41px;
	height: 41px;
	background-repeat: no-repeat;
}

.header .nav ul li span {
	display: block;
	margin-top: 15px;
	font-size: 16px;
}

.header .nav ul .active a span {
	font-weight: bold;
	font-size: 17px;
}

.header .nav ul li:nth-child(1) a:before {
	background-image: url(../images/nav-1.png);
}
.header .nav ul .active:nth-child(1) a:before,
.header .nav ul li:nth-child(1):hover a:before {
	background-image: url(../images/nav-1-on.png);
}

.header .nav ul li:nth-child(2) a:before {
	background-image: url(../images/nav-2.png);
}
.header .nav ul .active:nth-child(2) a:before,
.header .nav ul li:nth-child(2):hover a:before {
	background-image: url(../images/nav-2-on.png);
}

.header .nav ul li:nth-child(3) a:before{
	background-image: url(../images/nav-3.png);
}
.header .nav ul .active:nth-child(3) a:before,
.header .nav ul li:nth-child(3):hover a:before {
	background-image: url(../images/nav-3-on.png);
}

.header .nav ul li:nth-child(4) a:before{
	background-image: url(../images/nav-4.png);
}
.header .nav ul .active:nth-child(4) a:before,
.header .nav ul li:nth-child(4):hover a:before {
	background-image: url(../images/nav-4-on.png);
}

.header .nav ul li:nth-child(5) a:before,
.header .nav ul li:nth-child(6) a:before {
	background-image: url(../images/nav-5.png);
}
.header .nav ul .active:nth-child(5) a:before,
.header .nav ul .active:nth-child(6) a:before,
.header .nav ul li:nth-child(5):hover a:before,
.header .nav ul li:nth-child(6):hover a:before {
	background-image: url(../images/nav-5-on.png);
}

.header .nav ul li:nth-child(7) a:before {
	background-image: url(../images/nav-6.png);
}
.header .nav ul .active:nth-child(7) a:before,
.header .nav ul li:nth-child(7):hover a:before {
	background-image: url(../images/nav-6-on.png);
}

.header .nav ul li:nth-child(8) a:before {
	background-image: url(../images/nav-7.png);
}
.header .nav ul .active:nth-child(8) a:before,
.header .nav ul li:nth-child(8):hover a:before {
	background-image: url(../images/nav-7-on.png);
}

.header .nav ul li:nth-child(9) a:before {
	background-image: url(../images/nav-8.png);
}
.header .nav ul .active:nth-child(9) a:before,
.header .nav ul li:nth-child(9):hover a:before {
	background-image: url(../images/nav-8-on.png);
}


.part-toplist {
	margin-top: 20px;
	display: flex;
}
.part-toplist .left {
	width: 740px;
}
.part-toplist ul {
	display: flex;
	flex: 1;
}
.part-toplist ul li {
	display: inline-block;
}
.part-toplist strong {
	margin: 1.5px;
	display: inline-block;
	width: 54px;
	height: 28px;
	line-height: 30px;
	color: #fff;
	text-align: center;
	font-weight: normal;
}
.part-toplist ul li a {
	display: block;
	width: 95px;
    text-align: center;
}
.part-toplist ul li a span {
    display: block;
    height: 28px;
	line-height: 30px;
	margin: 1.5px;
	background: #f8f8f8;
	font-size: 12px;
	color: #666;
	overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
	padding: 0 10px;
}
.part-toplist ul.game strong {
	background-color: #00bfc1;
	color: #fff;
}
.part-toplist ul.app strong {
	background-color: #ffaa24;
	color: #fff;
}

.part-toplist .right {
    display: flex;
    margin-left: 3px;
}
.part-toplist .right strong {
	display: block;
	text-align: center;
	height: 60px;
	width: 40px;
	line-height: 60px;
	background-color: #768ae8;
	color: #fff;
	font-weight: normal;
}
.part-toplist .right ul {
	align-items: center;
    display: flex;
    flex-wrap: wrap;
}
.part-toplist .right ul li {
	width: 33.33%;
}
.part-toplist .right ul li a {
	width: 100%;
}

.part-toprecom {
	margin-top: 25px;
	margin-left: -10px;
}
.part-toprecom>div {
	width: 12.5%;
	padding-left: 10px;
}
.part-toprecom .item {
	background-color: #f7f7f7;
	border-radius: 10px;
	padding: 20px;
	text-align: center;
}
.part-toprecom .item .icon {
	width: 90px;
	height: 90px;
	margin: 0 auto;
	border-radius: 20px;
	overflow: hidden;
	position: relative;
}
.part-toprecom .item .title {
	margin: 15px 0;
}
.part-toprecom .item .title a {
	font-size: 14px;
	color: #666;
}
.part-toprecom .item .view {
	border: 1px solid var(--pm-c);
	color: var(--pm-c);
	display: inline-block;
	padding: 3px 15px;
	border-radius: 6px;
	font-size: 13px;
}

.w415 {
	width: 415px;
}
.part-banner {
	height: 258px;
	position: relative;
	overflow: hidden;
	border-radius: 10px;
}
.part-banner .uk-slideshow-items {
	min-height: 100% !important;
}
.part-banner .item {
	height: 100%;
}
.part-banner .item .cover {
	background: #00000050;
	height: 50px;
}
.part-banner .item .cover span {
	padding: 0 15px;
	line-height: 50px;
	max-width: 80%;
	font-size: 15px;
}

.part-switcher {
	margin-top: 30px;
	border: 1px solid var(--br-c);
}
.part-switcher ul {
	height: 50px;
	display: flex;
}
.part-switcher ul li {
	text-align: center;
	width: 33.33%;
	cursor: pointer;
	border-right: 1px solid var(--br-c);
}
.part-switcher ul li:last-child {
	border: 0;
}
.part-switcher ul li span {
	display: block;
	line-height: 50px;
	font-size: 16px;
	border-bottom: 1px solid var(--br-c);
}
.part-switcher ul .uk-active {
	background: var(--pm-c);
	color: #fff;
}
.part-switcher ul .uk-active span {
	border-bottom: 1px solid var(--pm-c);
}
.part-switcher .item-warp {
	padding: 20px 15px;
}
.part-switcher .item-warp .item {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}
.part-switcher .item-warp .item:last-child {
	margin-bottom: 0;
}
.part-switcher .item-warp .item .icon {
	width: 56px;
	height: 56px;
	border-radius: 10px;
	margin-right: 10px;
}
.part-switcher .item-warp .item .title {
	margin-bottom: 18px;
}
.part-switcher .item-warp .item .title a {
	font-size: 16px;
}
.part-switcher .item-warp .item .desc {
	color: #888;
	font-size: 13px;
}

.part-switcher .item-warp .item .btn {
	width: 63px;
	height: 34px;
	background-color: #f2f2f2;
	text-align: center;
	line-height: 34px;
	border-radius: 8px;
	font-size: 13px;
}
.part-latest {}
.part-latest .top {
	text-align: center;
	margin-bottom: 20px;
}
.part-latest .top .title {
	margin-bottom: 16px;
	color: #ff8521;
}
.part-latest .top .title a {
	font-size: 18px;
	font-weight: bold;
	color: #ff8521;
}
.part-latest .top .desc {
	color: #888;
	font-size: 14px;
}
.part-latest .list {
	margin-bottom: 30px;
}
.part-latest .list:last-child {
	margin-bottom: 0;
}
.part-latest .list .title {}
.part-latest .list .title a {
	font-size: 17px;
	font-weight: bold;
	color: #333;
}
.part-latest .list .title a:before {
	content: '推荐';
	display: inline-block;
	width: 46px;
	height: 24px;
	line-height: 24px;
	color: #fff;
	text-align: center;
	background: var(--pm-c);
	border-radius: 6px;
	margin-right: 10px;
	font-size: 14px;
	font-weight: normal;
}
.part-latest .list ul {}
.part-latest .list ul li {
	display: flex;
	align-items: center;
	margin-top: 16px;
}
.part-latest .list ul li .cname {
	font-size: 12px;
	color: #acb0bb;
}
.part-latest .list ul li a {
	font-size: 15px;
	display: block;
	margin-left: 3px;
	flex: 1;
}
.part-latest .list ul li .time {
	font-size: 13px;
	color: #acb0bb;
}

.w350 {
	width: 350px;
}
.part-recomgames {
	margin-bottom: 30px;
}
.part-recomgames .top-title {
	height: 44px;
	background-image: url(../images/top-title.png);
	margin-bottom: 20px;
}
.part-recomgames .uk-grid-margin {
	margin-top: 30px;
}
.part-recomgames .item {
	text-align: center;
}
.part-recomgames .icon {
	width: 100px;
	height: 100px;
	margin: 0 auto;
	border-radius: 20px;
}
.part-recomgames .title {
	margin-top: 15px;
	text-align: center;
}
.part-recomgames .title a {
	color: #666;
}
.part-recomgames .btn {
    padding: 6px 0;
    border-radius: 8px;
    border: solid 1px var(--pm-c);
    color: var(--pm-c);
    display: flex;
    align-items: center;
	justify-content: center;
    max-width: 80px;
    margin: 0 auto;
	margin-top: 20px;
}
.part-recomgames .btn:hover {
	background: var(--pm-c);
	color: #fff;
}
.part-recomgames .btn:before {
	content: '';
	display: inline-block;
	width: 14px;
	height: 15px;
	background-image: url(../images/part-recomgames-btn.png);
	background-repeat: no-repeat;
	margin-right: 8px;
}
.part-recomgames .btn:hover:before {
	background-image: url(../images/part-recomgames-btn-on.png);
}

.part-title {
	display: flex;
	align-items: center;
}
.part-title .title {
	background-image: url(../images/part-title.png);
	background-repeat: no-repeat;
	background-position: center left;
	padding-left: 40px;
	font-weight: bold;
	font-size: 17px;
}
.part-title .desc {
	color: #999;
	font-size: 12px;
	flex: 1;
	border-left: 1px solid #d4d4d4;
	margin-left: 15px;
	padding-left: 15px;
}
.part-title .more {
	background-image: url(../images/part-title-more.png);
	background-position: center right;
	background-repeat: no-repeat;
	padding-right: 20px;
	color: #999;
	font-size: 12px;
}


.part-dongtai {}
.part-dongtai .item-warp {
	margin-top: 20px;
}
.part-dongtai .item {
	margin-bottom: 13px;
	display: flex;
}
.part-dongtai .item .thumb {
	width: 130px;
	height: 98px;
	border-radius: 10px;
	position: relative;
	overflow: hidden;
	margin-right: 12px;
}
.part-dongtai .item .time {
	text-align: right;
	background-image: url(../images/part-dongtai-ico.png);
	background-repeat: no-repeat;
	color: #999;
	margin-bottom: 20px;
}
.part-dongtai .item .title {
	margin-bottom: 20px;
	margin-top: 8px;
}
.part-dongtai .item .title a {
	font-weight: bold;
	font-size: 16px;
}
.part-dongtai .item .desc {
	font-size: 14px;
	line-height: 30px;
	color: #666666;
}


.part-apps {
	margin-top: 35px;
}
.part-apps .apps-nav {
	display: flex;
	align-items: center;
	margin: 30px 0;
	gap: 10px
}
.part-apps .apps-nav li {
	flex: 1;
}
.part-apps .apps-nav li a:hover,
.part-apps .apps-nav .on a {
	background: var(--pm-c);
	color: #fff;
}
.part-apps .apps-nav li a {
	display: block;
	width: 100%;
	height: 40px;
	text-align: center;
	line-height: 40px;
	background-color: #f7f7f7;
	border-radius: 6px;
	color: #666;
}
.part-apps .uk-grid {
	margin-left: -40px;
}
.part-apps .item {
	width: 12.5%;
	text-align: center;
	padding-left: 40px;
}
.part-apps .item .icon {
	width: 112px;
	height: 112px;
	border-radius: 20px;
	margin: 0 auto;
}
.part-apps .item .title {
	margin-top: 20px;
	margin-bottom: 15px;
}
.part-apps .item .title a {
	font-size: 16px;
}
.part-apps .item .time {
	color: #999;
	font-size: 13px;
}


.part-weekrecom {
	margin-top: 38px;
	width: 100%;
	height: 240px;
	background-image: url(../images/part-weekrecom.png);
	background-position: center left 20px;
	background-repeat: no-repeat;
	background-color: #4bc9e1;
	box-shadow: 0px 3px 10px 0px rgba(61, 181, 204, 0.5);
	border-radius: 10px;
}
.part-weekrecom .uk-grid {
	margin-left: -68px;
}
.part-weekrecom .item-warp {
	padding: 20px 40px;
	margin-left: 10px;
}
.part-weekrecom .item {
	text-align: center;
	width: 14.2%;
	padding-left: 68px;
}
.part-weekrecom .item .icon {
	width: 80px;
	height: 80px;
	margin: 0 auto;
	border-radius: 20px;
	border: solid 4px rgba(248, 248, 248, 0.5);
}
.part-weekrecom .item .title {
	margin: 15px 0;
	color: #fff;
}
.part-weekrecom .item .title a {
	font-size: 16px;
	color: #fff;
}
.part-weekrecom .item .icon-star {
	margin: 0 auto;
	margin-bottom: 15px;
}
.part-weekrecom .item .btn {
	border-radius: 6px;
	border: solid 1px #ffffff50;
	color: #fff;
	font-size: 13px;
	padding: 6px 17px;
	display: inline-block;
}



.part-news {
	margin-top: 38px;
}
.part-news .part-title {
	margin-bottom: 30px;
}
.part-news .left {
	width: 370px;
}
.part-news .left .thumb {
	position: relative;
	overflow: hidden;
	height: 225px;
	border-radius: 10px;
}
.part-news .left .thumb .cover {
	text-align: center;
	font-size: 16px;
	background-color: #00000050;
}
.part-news .list {
	margin-bottom: 20px;
}
.part-news .list li {
	margin-top: 17px;
	display: flex;
	align-items: center;
}
.part-news .list li a {
	display: block;
	font-size: 16px;
	flex: 1;
	position: relative;
	padding-left: 20px;
}
.part-news .list li a:before {
	content: '';
	display: inline-block;
	width: 6px;
	height: 6px;
	background-color: #00a4c4;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate(0,-50%);
}
.part-news .list li .time {
	color: #999;
}

.part-news .left .thumb-small {
	display: block;
	height: 104px;
	position: relative;
	overflow: hidden;
	border-radius: 10px;
}
.part-news .center {
	flex: 1;
	overflow: hidden;
	margin: 0 30px;
}
.part-news .center {}
.part-news .right {
	width: 369px;
}
.part-news-rank .rank-title {
	width: 100%;
	height: 50px;
	background-color: #ebf8fa;
	background-image: url(../images/part-news-rank-title.png);
}
.part-gift-rank .rank-title {
	background-image: url(../images/part-gift-rank-title.png);
	
}

.part-news-rank .item-warp {}
.part-news-rank .item {
	margin-top: 30px;
}
.part-news-rank .item .num {
	display: inline-block;
	width: 28px;
	height: 28px;
	background-color: var(--pm-c);
	color: #fff;
	text-align: center;
	line-height: 30px;
	font-size: 16px;
	font-weight: bold;
	border-radius: 50%;
	margin-right: 10px;
}
.part-news-rank .item .title {
	display: flex;
	align-items: center;
	margin-bottom: 22px;
}
.part-news-rank .item .title a {
	display: block;
	flex: 1;
	overflow: hidden;
	font-size: 16px;
	font-weight: bold;
}
.part-news-rank .item .desc {
	font-size: 14px;
	height: 47px;
	color: #888888;
	background: -webkit-linear-gradient(to right, #fff, #fff, #dbf2f7);
	background: -moz-linear-gradient(to right, #fff, #fff, #dbf2f7);
	background: -o-linear-gradient(to right, #fff, #fff, #dbf2f7);
	background: -webkit-gradient(linear, 100% 0, 0 0, from(#fff), color-stop(0.5, #fff), to(#dbf2f7));
	background: linear-gradient(to right, #fff, #fff, #dbf2f7);
	border-bottom: 1px solid var(--pm-c);
	position: relative;
}
.part-news-rank .item .desc:before {
	content: '';
	display: inline-block;
	width: 5px;
	height: 5px;
	border-radius: 50px;
	background-color: var(--pm-c);
	position: absolute;
	bottom: -3px;
	left: 0;
}
.part-news-rank .item .desc div {
	line-height: 45px;
	padding-left: 10px;
}


.part-gonglue {}
.part-gonglue .part-title {
	margin-top: 38px;
	margin-bottom: 30px;
}
.part-gonglue .gonglue-warp {
	padding: 35px 0;
	background-image: url(../images/part-gonglue-bg.png);
	background-size: cover;
}
.part-gonglue .uk-grid-margin {
	margin-top: 40px;
}
.part-gonglue .item {}
.part-gonglue .item .thumb {
	height: 180px;
	border-radius: 10px;
	overflow: hidden;
	position: relative;
	transition: all .2s;
}
.part-gonglue .item .thumb:hover {
	box-shadow: 0px 3px 10px 0px rgba(149, 149, 149, 0.75);
	transform: translateY(-3px);
}
.part-gonglue .item .title {
	margin-top: 17px;
}
.part-gonglue .item .title a {
	font-size: 16px;
	font-weight: bold;
}
.part-gonglue .item .desc {
	margin: 12px 0;
	line-height: 30px;
	font-size: 14px;
	color: #888;
}
.part-gonglue .item .foot {}
.part-gonglue .item .view {
	display: inline-block;
	padding: 6px 10px;
	background: var(--pm-c);
	border-radius: 6px;
	color: #fff;
	background-image: url(../images/part-gonglue-view.png);
	background-position: center left 10px;
	background-repeat: no-repeat;
	padding-left: 32px;
	border: 1px solid var(--pm-c);
}
.part-gonglue .item .view:hover {
	border: 1px solid var(--pm-c);
	color: var(--pm-c);
	background-image: url(../images/part-gonglue-view-on.png);
	background-color: transparent;
}
.part-gonglue .item .time {
	color: #888;
	margin-left: 25px;
}



.part-album {
	margin: 38px 0;
}
.part-album .album-warp {
	margin-top: 35px;
	display: flex;
}
.part-album .item {
	width: 168px;
	height: 300px;
}
.part-album .item .left {
	background-image: url(../images/part-album-bg.png);
	background-repeat: no-repeat;
	background-size: 100%;
	width: 168px;
	height: 100%;
	padding-top: 55px;
}
.part-album .item.active {
	flex: 1;
	display: flex;
}
.part-album .item.active .right {
	display: block;
}
.part-album .item .right {
	display: none;
	flex: 1;
	overflow: hidden;
}
.part-album .item .item-icon {
	display: block;
	width: 90px;
	height: 90px;
	border-radius: 15px;
	margin: 0 auto;
	overflow: hidden;
	position: relative;
}
.part-album .item .album-info {
	margin-left: 50px;
	margin-top: 55px;
	font-size: 12px;
	color: #888;
}
.part-album .item .album-info li {
	margin-top: 18px;
}

.part-album .item .album-title {
	margin-bottom: 28px;
}
.part-album .item .album-title a {
	font-size: 17px;
	font-weight: bold;
}
.part-album .item .bind-games {}
.part-album .item .bind-games .icon {
	width: 70px;
	height: 70px;
	border-radius: 50%;
}
.part-album .item .bind-games .title {
	margin-top: 18px;
}
.part-album .item .bind-games .title a {
	color: #666;
	font-size: 15px;
}
.part-hotalbum {}
.part-hotalbum .top {
	display: flex;
	align-items: center;
	margin-top: 30px;
	border-bottom: 1px dashed #eee;
	padding-bottom: 30px;
	margin-bottom: 30px;
}
.part-hotalbum .top .icon {
	background-image: url(../images/part-hotalbum-top-bg.png);
	width: 110px;
	height: 127px;
	position: relative;
	background-size: 100%;
	margin-right: 20px;
}
.part-hotalbum .top .icon a {
	display: block;
	width: 66px;
	height: 66px;
	border-radius: 10px;
	overflow: hidden;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
.part-hotalbum .top .title {
	margin-bottom: 25px;
}
.part-hotalbum .top .title a {
	font-size: 16px;
	font-weight: bold;
}
.part-hotalbum .top .info {
	position: relative;
	overflow: hidden;
}
.part-hotalbum .top span {
	display: block;
	color: #888;
	font-size: 14px;
	margin-top: 15px;
}
.part-hotalbum .top span:first-child {
	margin-top: 0;
}
.part-hotalbum .top .btn {
	display: inline-block;
	width: 66px;
	height: 34px;
	text-align: center;
	line-height: 34px;
	border-radius: 6px;
	border: solid 1px var(--pm-c);
	color: var(--pm-c);
	position: absolute;
	top: 50%;
	transform: translate(0,-50%);
	right: 0;
}

.part-hotalbum .thumb {
	display: flex;
	align-items: center;
	margin-top: 30px;
	border-bottom: 1px dashed #eee;
	padding-bottom: 30px;
	margin-bottom: 30px;
}
.part-hotalbum .thumb .img {
	width: 127px;
	height: 90px;
	border-radius: 10px;
	position: relative;
	overflow: hidden;
	margin-right: 15px;
}
.part-hotalbum .thumb .title {
	margin-bottom: 18px;
}
.part-hotalbum .thumb .title a {
	font-weight: bold;
	font-size: 16px;
}
.part-hotalbum .thumb .desc {
	font-size: 14px;
	line-height: 30px;
	color: #999;
}

.part-hotalbum ul {}
.part-hotalbum ul li {
	display: flex;
	align-items: center;
	padding-bottom: 15px;
	margin-bottom: 15px;
	border-bottom: 1px dashed #eee;
}
.part-hotalbum ul li:last-child {
	border: 0;
	padding-bottom: 0;
	margin-bottom: 0;
}
.part-hotalbum ul li .title {
	display: block;
	flex: 1;
	overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    position: relative;
    padding-left: 20px;
}
.part-hotalbum ul li .title:before {
	content: '';
	display: inline-block;
	width: 6px;
	height: 6px;
	background-color: var(--pm-c);
	border-radius: 50%;
	position: absolute;
	top: 50%;
	transform: translate(0,-50%);
	left: 0;
}
.part-hotalbum ul li .view {
	color: var(--pm-c);
}




.part-images {}
.part-images .thumb {
	display: block;
	position: relative;
	overflow: hidden;
	border-radius: 10px;
}
.w712 {
	flex: 1;
}
.h412 {
	height: 412px;
}
.w232 {
	width: 232px;
}
.w479 {
	width: 479px;
}
.h158 {
	height: 158px;
}
.h243 {
	height: 243px;
}



.part-rank {
	margin: 38px 0;
}
.part-rank .uk-grid {
	margin-top: 25px;
	margin-left: -60px;
}
.part-rank .uk-grid .uk-width-1-3 {
	padding-left: 60px;
}
.part-rank .uk-grid .rank-title {
	height: 56px;
	line-height: 56px;
	font-weight: bold;
	font-size: 18px;
	text-align: center;

}

.part-rank .rank-01 .rank-title {
	background: #f6f4ff;
	color: #a294fc;
}
.part-rank .rank-02 .rank-title {
	background: #edf6ff;
	color: #52a8ff;
}
.part-rank .rank-03 .rank-title {
	background: #fff5ea;
	color: #fe9b34;
}
.part-rank .rank-warp {
	margin-top: 30px;
}
.part-rank .item {
	position: relative;
	margin-top: 35px;
	display: flex;
	height: 120px;
	background-image: url(../images/rank-bg.png);
	background-repeat: no-repeat;
}

.part-rank .item .uk-flex-cover {
	padding: 15px 27px;
}

.part-rank .item .title {
	margin-bottom: 12px;
}
.part-rank .item .title a {
	font-size: 16px;
	line-height: normal;
	font-weight: bold;
}
.part-rank .item .info {
	color: #999;
	margin-bottom: 15px;
}
.part-rank .item .btn {
	border-radius: 15px;
	font-size: 12px;
	color: #666;
	padding: 6px 18px;
	background: #fff;
}
.part-rank .item .icon {
	margin-right: 40px;
	text-align: center;
}
.part-rank .item .icon a {
	display: block;
	width: 76px;
	height: 76px;
	border-radius: 15px;
	overflow: hidden;
	position: relative;
	margin-bottom: 10px;
}

.part-rank .item .icon .time {
	color: #999;
}
.part-rank .item .rank-num {
	width: 37px;
	height: 56px;
	position: absolute;
	top: -18px;
	right: 27px;
}
.part-rank .item.item-1 .title a {
    color: #fff;
}
.part-rank .item.item-1 .info {
    color: #fff;
    opacity: .8;
}
.part-rank .item.item-1 .time {
    color: #fff;
    opacity: .8;
}
.part-rank .rank-01 .item.item-1 .btn {
	background-image: linear-gradient(0deg, 
		#e6e2ff 0%, 
		#ffffff 100%), 
	linear-gradient(
		#00a4c4, 
		#00a4c4);
	background-blend-mode: normal, 
		normal;
	color: #9393fc;
}

.part-rank .rank-02 .item.item-1 .btn {
	background-image: linear-gradient(0deg, 
		#def2ff 0%, 
		#ffffff 100%), 
	linear-gradient(
		#00a4c4, 
		#00a4c4);
	color: #52aaff;
}

.part-rank .rank-03 .item.item-1 .btn {
	background-image: linear-gradient(0deg, 
		#fdf3df 0%, 
		#ffffff 100%), 
	linear-gradient(
		#00a4c4, 
		#00a4c4);
	color: #fe9b33;
}

.part-rank .rank-01 .item.item-1 {
	background-image: url(../images/rank-01-bg.png);
}
.part-rank .rank-01 .item.item-1 .rank-num {
	background-image: url(../images/rank-01-num-1.png);
}
.part-rank .rank-02 .item.item-1 {
	background-image: url(../images/rank-02-bg.png);
}
.part-rank .rank-02 .item.item-1 .rank-num {
	background-image: url(../images/rank-02-num-1.png);
}
.part-rank .rank-03 .item.item-1 {
	background-image: url(../images/rank-03-bg.png);
}
.part-rank .rank-03 .item.item-1 .rank-num {
	background-image: url(../images/rank-03-num-1.png);
}
.part-rank .item.item-2 .rank-num {
	background-image: url(../images/rank-num-2.png);
}
.part-rank .item.item-3 .rank-num {
	background-image: url(../images/rank-num-3.png);
}
.part-rank ul {}
.part-rank ul li {
	display: flex;
	align-items: center;
	margin-top: 28px;
}
.part-rank ul li .num {
	font-weight: bold;
	color: #333;
	margin-right: 15px;
	display: inline-block;
	width: 12px;
	font-size: 15px;
}
.part-rank ul li .title {
	display: block;
	flex: 1;
	font-size: 16px;
	overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.part-rank ul li .info {
	color: #999;
}
.part-rank ul li .btn {
	display: block;
	width: 13px;
	height: 14px;
	background-image: url(../images/part-rank-li-btn.png);
	margin-left: 27px;
}

.part-latestgift {}
.part-latestgift .latestgift-warp {
	margin-top: 38px;
}
.part-latestgift .item {
	display: flex;
	align-items: center;
	height: 82px;
	padding-left: 90px;
	background-image: url(../images/part-latestgift-item-thumb.png);
	background-repeat: no-repeat;
	background-position: center left;
	margin-bottom: 20px;
}
.part-latestgift .item .title {
	margin-bottom: 25px;
}
.part-latestgift .item .title a {
	font-size: 16px;
}
.part-latestgift .item .time {
    background-image: url(../images/icon-time.png);
    background-repeat: no-repeat;
    background-position: center left;
    padding-left: 30px;
    color: #acacac;
}
.part-latestgift .item .btn {
	display: inline-block;
	padding: 10px 20px;
	border-radius: 10px;
	text-align: center;
	border: solid 1px #eeeeee;
	margin-left: 15px;
}

.part-links {
	margin: 38px 0 !important;
}
.part-links ul {
	margin-top: 38px;
}
.part-links ul li {
	display: inline-block;
}
.part-links ul li a {
	color: #999;
	font-size: 13px;
}
.part-links ul li a:after {
	content: '|';
	display: inline-block;
	margin-left: 15px;
	margin-right: 12px;
}
.part-links ul li:last-child a:after {
	display: none;
}



.crumbs {
	margin: 30px 0;
}
.crumbs span,
.crumbs a {
	color: #999;
	font-size: 14px;
}
.crumbs a:after {
	content: '>';
	display: inline-block;
	margin-left: 4px;
}
.crumbs a:last-child:after {
	display: none;
}

.page-error {
	padding: 120px 0 150px 0;
	text-align: center;
}
.page-error .text {
	color: #999;
	margin: 50px 0;
}
.page-error .go-home {
	display: inline-block;
	width: 123px;
	height: 46px;
	line-height: 46px;
	color: #fff;
	background-color: var(--pm-c);
	border-radius: 10px;
}


.page {}
.page-nav {
	width: 222px;
	margin-right: 70px;
}
.page-nav ul {}
.page-nav ul li {
	margin-bottom: 15px;
}
.page-nav ul li a {
	font-size: 16px;
	display: flex;
	align-items: center;
	line-height: 50px;
	height: 50px;
	background-color: #f7f7f7;
	border-radius: 10px;
	position: relative;
	padding: 0 25px;
}
.page-nav ul li:hover a {
	background: var(--pm-c);
	color: #fff;
}
.page-nav ul li a .title {
	flex: 1;
}
.page-nav ul li a .arrow {
	display: inline-block;
	width: 18px;
	height: 18px;
	background: var(--pm-c);
	color: #fff;
	text-align: center;
	border-radius: 4px;
}
.page-nav ul .active a {
	color: #fff;
	background: var(--pm-c);
}
.page-nav ul li:hover .arrow,
.page-nav ul .active .arrow {
	background: #fff;
	color: var(--pm-c);
}
.page .page-main {
	flex: 1;
	overflow: hidden;
}
.page .post-content {
	margin-top: 35px;
	min-height: 550px;
}

.page .page-map {}
.page .page-map .title {
	width: 154px;
	height: 32px;
	line-height: 32px;
	text-align: center;
	color: #fff;
	background-image: url(../images/page-map-title.png);
	background-repeat: no-repeat;
}
.page .page-map ul {
	margin-top: 10px;
	margin-bottom: 28px;
}
.page .page-map ul li {
	display: inline-block;
	margin-right: 60px;
}
.page .page-map ul li a {
	display: block;
	margin-top: 20px;
	font-size: 16px;
	color: #666;
}



.hide {
	display: none !important;
}



.category {}

.category-nav {
	margin: 30px 0;
}
.category-nav ul {
	margin-left: -10px;
}
.category-nav ul li {
	padding-left: 10px;
}
.category-nav ul li a {
	display: block;
    background-color: #f7f7f7;
    border-radius: 6px;
    color: #666;
    line-height: 40px;
    text-align: center;
}
.category-nav ul .uk-grid-margin {
	margin-top: 10px;
}
.category-nav ul .active {}
.category-nav ul li a:hover,
.category-nav ul .active a {
	background: var(--pm-c);
	color: #fff;
}


.category-news {
	flex: 1;
	overflow: hidden;
}
.category-news .news-warp {}
.category-news .news-warp .item {
	display: flex;
	align-items: center;
	border-bottom: 1px dashed #e5e5e5;
	padding-bottom: 30px;
	margin-bottom: 30px;
}
.category-news .news-warp .item .thumb {
	width: 285px;
	height: 180px;
	box-shadow: 0px 3px 10px 0px rgba(149, 149, 149, 0.75);
	border-radius: 10px;
	position: relative;
	overflow: hidden;
	margin-right: 23px;
}

.category-news .news-warp .item .title {
	margin-bottom: 28px;
}
.category-news .news-warp .item .title a {
	font-size: 18px;
	font-weight: bold;
}
.category-news .news-warp .item .desc {
	font-size: 14px;
	line-height: 30px;
	color: #888888;
	margin-bottom: 30px;
}
.category-news .news-warp .item .foot {}
.category-news .news-warp .item .foot .view {
	display: inline-block;
	padding: 6px 10px;
	border-radius: 6px;
	color: #fff;
	background-image: url(../images/part-gonglue-view-on.png);
	background-position: center left 10px;
	background-repeat: no-repeat;
	padding-left: 32px;
	border: 1px solid var(--pm-c);
	color: var(--pm-c);
}
.category-news .news-warp .item .foot .view:hover {
	border: 1px solid var(--pm-c);
	color: #fff;
	background-image: url(../images/part-gonglue-view.png);
	background-color: var(--pm-c);
}
.category-news .news-warp .item .foot span {
	display: inline-block;
	border: 1px solid #f5f5f5;
	border-radius: 6px;
	padding: 7px 10px;
	color: #888;
	margin-left: 10px;
	font-size: 13px;
}



.category-weekrecom {
	display: flex;
	align-items: center;
	height: 280px;
	margin-bottom: 30px;
}
.category-weekrecom .weekrecom-title {
	width: 80px;
	height: 230px;
	background-color: #4d9ae6;
	box-shadow: 0px 3px 10px 0px rgba(98, 167, 235, 0.5);
	border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    background-image: url(../images/part-weekrecom.png);
    background-repeat: no-repeat;
    background-position: center;
}
.category-weekrecom .weekrecom-warp {
	width: 1119px;
	height: 280px;
	background-color: #ffffff;
	box-shadow: 0px 3px 10px 0px rgba(61, 181, 204, 0.5);
	border-radius: 10px;
	border: solid 1px #eeeeee;

}
.category-weekrecom .weekrecom-warp .uk-grid {
	padding: 30px 38px;
}
.category-weekrecom .item {
	width: 14.2%;
	text-align: center;
}
.category-weekrecom .item .icon {
	width: 85px;
	height: 85px;
	border-radius: 20px;
	margin: 0 auto;
}
.category-weekrecom .item .title {
	margin: 15px 0 10px 0;
}
.category-weekrecom .item .title a {
	font-size: 16px;
	font-weight: bold;
}
.category-weekrecom .item .info {
	color: #999;
	margin-bottom: 10px;
}
.category-weekrecom .item .icon-star {
	margin: 0 auto;
	margin-bottom: 15px;
	background-image: url(../images/icon-star-bg-1.png);
}
.category-weekrecom .item .btn {
	display: inline-block;
	width: 88px;
	height: 30px;
	line-height: 30px;
	border-radius: 6px;
	border: solid 1px var(--pm-c);
	text-align: center;
	color: var(--pm-c);
}





.category-apps {}
.category-apps .category-nav {}
.category-apps .category-nav li {
	width: 11.1111%;
}

.category-apps .apps-warp {}
.category-apps .apps-warp .item {
	text-align: center;
	position: relative;
}
.category-apps .apps-warp .item .icon {
	background-image: url(../images/category-apps-icon-bg.png);
	width: 170px;
	height: 186px;
	margin: 0 auto;
	position: relative;
}
.category-apps .apps-warp .item .icon a {
	display: inline-block;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	overflow: hidden;
	width: 90px;
	height: 90px;
	border-radius: 15px;
}
.category-apps .apps-warp .item .title {
	margin-top: 20px;
}
.category-apps .apps-warp .item .title a {
	font-weight: bold;
	font-size: 16px;
}
.category-apps .apps-warp .item .info {
	margin-top: 25px;
	color: #999;
}

.category-apps .apps-warp .item .foot {
	margin-top: 36px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	background-color: #f7f7f7;
	border-radius: 0px 0px 10px 10px;
	display: block;
	color: #888;
}
.category-apps .apps-warp .item:hover .foot {
	background: var(--pm-c);
	color: #fff;
}
.category-apps .apps-warp .item .foot,
.category-apps .apps-warp .item>div {
	position: relative;
	z-index: 10;
}
.category-apps .apps-warp .item:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 264px;
	border-radius: 10px;
	border: solid 1px #f6f6f6;
}


.category-album {}
.category-album .category-nav {
	margin-top: 0;
}
.category-album .category-nav li {
	width: 120px;
}
.category-album .album-warp {
	margin-top: 35px;
}
.category-album .album-warp .item {
	display: flex;
	height: 300px;
}
.category-album .album-warp .item .left {
	background-image: url(../images/part-album-bg.png);
	background-repeat: no-repeat;
	background-size: 100%;
	width: 168px;
	height: 100%;
	padding-top: 55px;
}
.category-album .album-warp .item .item-icon {
    display: block;
    width: 90px;
    height: 90px;
    border-radius: 15px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}
.category-album .album-warp .item .album-info {
	margin-left: 50px;
	margin-top: 55px;
	font-size: 12px;
	color: #888;
}
.category-album .album-warp .item .album-info li {
	margin-top: 18px;
}
.category-album .album-warp .item .right {
    flex: 1;
    overflow: hidden;
    margin-left: 20px;
}
.category-album .album-warp .item .album-title {
	margin-bottom: 28px;
	display: flex;
	align-items: center;
}
.category-album .album-warp .item .album-title a {
	font-size: 18px;
	font-weight: bold;
	flex: 1;
	display: block;
}
.category-album .album-warp .item .album-title span {
	display: inline-block;
	color: var(--pm-c);
	border: 1px solid var(--pm-c);
	width: 90px;
	height: 36px;
	text-align: center;
	line-height: 36px;
	border-radius: 6px;
	font-size: 16px;
	border: solid 1px #00a4c4;
}
.category-album .album-warp .item .bind-games {
	text-align: center;
}
.category-album .album-warp .item .bind-games .icon {
	width: 70px;
	height: 70px;
	margin: 0 auto;
	border-radius: 50%;
	position: relative;
}
.category-album .album-warp .item .bind-games .icon .cover {
	width: 100%;
	height: 100%;
	line-height: 70px;
	text-align: center;
	background-color: #00000060;
	position: absolute;
	top: 0;
	left: 0;
	display: none;
}
.category-album .album-warp .item .bind-games .icon:hover .cover {
	display: block;
}
.category-album .album-warp .item .bind-games .title {
	margin-top: 12px;
}
.category-album .album-warp .item .bind-games .title a {
	color: #666;
	font-size: 15px;
}


.category-rank {}
.category-rank .rank-top {
	margin-top: 30px;
	height: 392px;
	background-image: url(../images/rank-top-bg.png);
	position: relative;
}
.category-rank .rank-top .uk-container {
	position: relative;
	height: 100%;
	padding: 0;
}
.category-rank .rank-top .top-warp {
	border-radius: 0px 0px 10px 10px;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	backdrop-filter: blur(10px);
	padding: 13px 25px;
}
.category-rank .part-rank .item,
.category-rank .part-rank .uk-grid {
	margin-top: 0 !important;
}
.category-rank .rank-warp {
	margin: 30px 0;
}
.category-rank .rank-warp .item {
	background-image: url(../images/category-rank-bg.png);
	background-repeat: no-repeat;
	margin-bottom: 20px;
	padding: 25px;
	display: flex;
	position: relative;
}
.category-rank .rank-warp .item .icon {
	width: 110px;
	height: 110px;
	border-radius: 20px;
	overflow: hidden;
	margin-right: 20px;
}
.category-rank .rank-warp .item .title {
	margin-bottom: 25px;
}
.category-rank .rank-warp .item .title a {
	font-size: 16px;
	font-weight: bold;
}
.category-rank .rank-warp .item .info {
	color: #aaa;
	font-size: 14px;
	margin-bottom: 25px;
}
.category-rank .rank-warp .item .desc {
	color: #999;
	font-size: 14px;
}
.category-rank .rank-warp .item .btn {
	width: 92px;
	height: 33px;
	text-align: center;
	line-height: 33px;
	color: #666;
	background-color: #fff;
	border-radius: 16px;
	margin-right: 30px;
	margin-left: 100px;
}
.category-rank .rank-warp .item:hover .btn {
	color: #fff;
	background-color: #00a4c4;
}
.category-rank .rank-warp .item .num {
	position: absolute;
	top: 0;
	right: 80px;
	display: inline-block;
	width: 46px;
	height: 69px;
	background-image: url(../images/category-rank-item-num-bg.png);
	text-align: center;
	line-height: 72px;
	font-size: 16px;
	font-weight: bold;
}
.category-rank-new {}
.category-rank-new .item .top {
    position: relative;
    display: flex;
    background-image: url(../images/category-rank-new-item-bg.png);
    background-repeat: no-repeat;
    background-size: 100%;
}

.category-rank-new .item .top .uk-flex-cover {
    padding: 23px;
}
.category-rank-new .item .top .title {
	margin-bottom: 15px;
	max-width: 190px;
}
.category-rank-new .item .top .title a {
	font-weight: bold;
	font-size: 16px;
}
.category-rank-new .item .top .time {
	color: #999999;
	opacity: .8;
	margin-bottom: 22px;
}
.category-rank-new .item .top .btn  {
    border-radius: 15px;
    font-size: 12px;
    color: #666;
    padding: 6px 18px;
    background: #fff;
}
.category-rank-new .item .top .band {
	display: inline-block;
	width: 37px;
	height: 56px;
	background-image: url(../images/category-rank-new-top-band.png);
	background-repeat: no-repeat;
	position: absolute;
	top: 0;
	right: 0;
	margin: 25px 30px;
}
.category-rank-new .item .top .thumb {
	position: relative;
	display: flex;
	align-items: center;
	height: 76px;
	margin-bottom: 15px;
    margin-right: 20px;
}
.category-rank-new .item .thumb img {
	width: 60px;
	height: 60px;
	opacity: .6;
}
.category-rank-new .item .thumb img:last-child {
	width: 76px;
	height: 76px;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	opacity: 1;
}
.category-rank-new .item ul li {
	display: flex;
	align-items: center;
	margin-top: 25px;
}
.category-rank-new .item ul li .num {
	display: inline-block;
	width: 19px;
	height: 29px;
	background-image: url(../images/category-rank-new-item-num.png);
	background-repeat: no-repeat;
	text-align: center;
	line-height: 26px;
	font-size: 12px;
	font-weight: bold;
	margin-right: 13px;
}
.category-rank-new .item ul li:nth-child(1) .num {
	background-image: url(../images/category-rank-new-item-num-01.png);
	color: #8014ff;
}
.category-rank-new .item ul li:nth-child(2) .num {
	background-image: url(../images/category-rank-new-item-num-02.png);
	color: #008efe;
}
.category-rank-new .item ul li:nth-child(3) .num {
	background-image: url(../images/category-rank-new-item-num-03.png);
	color: #884000;
}
.category-rank-new .item ul li .title {
    display: block;
    flex: 1;
    font-size: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.category-rank-new .item ul li .info {
    color: #999;
}
.category-rank-new .item ul li .dow {
    display: block;
    width: 13px;
    height: 14px;
    background-image: url(../images/part-rank-li-btn.png);
    margin-left: 27px;
    background-repeat: no-repeat;
}








.category-gift {
	margin-top: 38px;
}
.category-gift .item {
	padding: 20px 30px;
	background-color: #fafafa;
	border-radius: 10px;
	margin-bottom: 10px;
	display: flex;
	align-items: center;
}
.category-gift .item .icon {
	width: 150px;
	height: 165px;
	background-image: url(../images/category-gift-thumb-bg.png);
	background-repeat: no-repeat;
	position: relative;
	overflow: hidden;
	margin-right: 25px;
}
.category-gift .item .icon a {
	display: block;
	width: 96px;
	height: 96px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	overflow: hidden;
}
.category-gift .item .title {}
.category-gift .item .title a {
	font-weight: bold;
	font-size: 16px;
}
.category-gift .item .desc {
	margin: 26px 0;
	color: #888;
}

.category-gift .item .time {
	background-image: url(../images/icon-time.png);
	background-repeat: no-repeat;
	background-position: center left;
	padding-left: 30px;
	color: #acacac;
}









.sidebar {
	width: 370px;
	margin-left: 30px;
}

.pagination {
    text-align: center;
    margin: 30px 0;
}

.pagination .page-item {
    display: inline-block;
    margin: 5px;
    font-size: 16px;
    border: 1px solid #E6E6E6;
    color: #666;
    background: #fff;
	font-size: 13px;
}
.pagination .active {
	border: 1px solid var(--pm-c);
}
.pagination .page-item:hover a,
.pagination .active a,
.pagination .active span {
    background: var(--pm-c);
    color: #fff !important;
}

.pagination .page-item:hover {
    background: var(--pm-c);
    color: #fff;
}

.pagination .page-item .page-link {
    display: block;
    font-size: 13px;
    padding: 6px 12px;
    color: #888;
    border: 1px solid transparent;
}



.kaifu {}
.kaifu .kaifu-tab {
	border: 1px solid #eee;
}
.kaifu .kaifu-tab .tab-top {
	margin-top: 32px;
	display: flex;
	padding: 16px 20px;
	background: var(--pm-c);
	color: #fff !important;
}
.kaifu .kaifu-tab .tab-top>div {
	width: 135px;
	text-align: center;
	color: #fff !important;
}
.kaifu .kaifu-tab .name {
	flex: 1;
	overflow: hidden;
	display: flex;
	align-items: center;
	font-size: 15px;
}
.kaifu .kaifu-tab .name .icon {
	width: 38px;
	height: 38px;
	border-radius: 8px;
	margin-right: 15px;
}
.kaifu .kaifu-tab .name .title {
	flex: 1;
	overflow: hidden;
	text-align: left;
}

.kaifu .kaifu-tab .time {
	color: #ff3b27;
}
.kaifu .kaifu-tab .item {
	display: flex;
	align-items: center;
	padding: 0 20px;
	border-bottom: 1px solid #eee;
	font-size: 15px;
	color: #666;
}
.kaifu .kaifu-tab .item:last-child {
	border-bottom: 0;
}
.kaifu .kaifu-tab .item>div {
	width: 135px;
	text-align: center;
	padding: 15px 0;
}

.kaifu .kaifu-tab .btn {
	display: inline-block;
	width: 108px;
	height: 34px;
	line-height: 34px;
	text-align: center;
	border-radius: 4px;
}
.kaifu .kaifu-tab .btn:before {
	content: '';
	display: inline-block;
	width: 14px;
	height: 14px;
	margin-right: 5px;
}
.kaifu .kaifu-tab .down .btn {
	margin: 0 auto;
	border: 1px solid #229fe7;
	color: #229fe7;
	display: flex;
	align-items: center;
	justify-content: center;
}
.kaifu .kaifu-tab .gift .btn {
	border: 1px solid #00bcc1;
	color: #00bcc1;
}
.kaifu .kaifu-tab .down .btn:before {
	background-image: url(../images/kaifu-btn-down.png);
}
.kaifu .kaifu-tab .down:hover .btn:before {
	background-image: url(../images/kaifu-btn-down-on.png);
}
.kaifu .kaifu-tab .gift .btn:before {
	width: 15px;
	height: 15px;
	background-image: url(../images/kaifu-btn-gift.png);
	transform: translateY(2px);
}
.kaifu .kaifu-tab .gift:hover .btn:before {
	background-image: url(../images/kaifu-btn-gift-on.png);
}
	
.kaifu .kaifu-tab .down .btn:hover {
	background: #229fe7;
	color: #fff;
}
.kaifu .kaifu-tab .gift .btn:hover {
	background: #00bcc1;
	color: #fff;
}


.single-news {
	flex: 1;
	overflow: hidden;
}

.single-news .single-header {
	background-image: url(../images/single-header-bg.png);
	text-align: center;
	padding: 60px 0;
}
.single-news .single-header h1 {
	margin-bottom: 70px;
	font-size: 26px;
	color: #3e535f;
	font-weight: bold;
}
.single-news .single-header .info {}

.single-news .single-header .info span {
	font-size: 14px;
	color: #888888;
	margin: 0 35px;
}
.post-content {
	margin: 30px 0;
}
.post-content p {
	font-size: 16px;
	line-height: 36px;
	color: #666666;
	text-indent: 2em;
}
.post-content p img {
	display: block;
	margin: 0 auto;
	max-width: 540px;
}
.post-content iframe {
	display: block;
	margin: 0 auto;
}
.single-content .h3 ,
.post-content h3 {
	background-image: url(../images/page-map-title.png);
	background-repeat: no-repeat;
	padding-left: 45px;
	font-size: 16px;
	color: #fff;
	height: 32px;
	line-height: 32px;
	margin: 20px 0;
}

.single-apps {
	flex: 1;
	overflow: hidden;
}
.single-apps .single-header {
	margin-top: 45px;
	background-image: url(../images/single-header-bg.png);
	position: relative;
	background-size: cover;
	padding-top: 40px;
	padding-bottom: 25px;
}
.single-apps .single-header .icon {
	width: 140px;
	height: 140px;
	border-radius: 20px;
	overflow: hidden;
	position: absolute;
	top: -45px;
	left: 30px;
}
.single-apps .single-header .title {
	font-size: 26px;
	color: #3e535f;
	font-weight: bold;
	margin: 0;
	margin-left: 195px;
}
.single-apps .single-header .info {
	background-color: #ffffff90;
	border-radius: 10px;
	margin: 30px;
	margin-top: 50px;
	margin-bottom: 20px;
	padding: 20px;
}
.single-apps .single-header .info ul {
	display: flex;
    flex-wrap: wrap;
    gap: 20px 10px
}
.single-apps .single-header .info ul li {
	background-image: url(../images/icon-tag.png);
	background-repeat: no-repeat;
	background-position: center left;
	padding-left: 20px;
	color: #888;
	font-size: 14px;
	width: 21%;
}
.single-apps .single-header .info ul li:last-child {
	width: 40%;
}

.single-apps .single-header .btn-group {
	display: flex;
	align-items: center;
	margin: 0 30px;
}
.single-apps .single-header .btn-group .btn {
	width: 207px;
	height: 53px;
	line-height: 53px;
	box-shadow: 0px 2px 5px 0px rgba(0, 135, 201, 0.5);
	border-radius: 10px;
	text-align: center;
	margin-right: 10px;
	position: relative;
	cursor: pointer;
}
.single-apps .single-header .btn-group .btn span {
	font-size: 16px;
	background-repeat: no-repeat;
	padding-left: 35px;
	color: #fff;
	display: inline-block;
	height: 27px;
	line-height: 27px;
}

.single-apps .single-header .btn-group .none {
	background: #bbb !important;
	box-shadow: 0px 2px 5px 0px #e5e5e5
}
.single-apps .single-header .btn-group .az {
	background-color: #0087c9
}
.single-apps .single-header .btn-group .az span {
	background-image: url(../images/icon-az.png);
}
.single-apps .single-header .btn-group .az.none span {
	background-image: url(../images/icon-az-none.png);
}

.single-apps .single-header .btn-group .ios {
	background-color: #00bac1;
}
.single-apps .single-header .btn-group .ios span {
	background-image: url(../images/icon-ios.png);
}

.single-apps .single-header .btn-group .ios.none span {
	background-image: url(../images/icon-ios-none.png);
}
.single-apps .single-header .btn-group .btn:hover .qr-img {
	display: block;
}
.single-apps .single-header .btn-group .gift {
	background-color: #0087c9;
}
.single-apps .single-header .btn-group .gift span {
	background-image: url(../images/icon-gift.png);
}

.single-apps .single-header .btn-group .gift.none span {
	background-image: url(../images/icon-gift-none.png);
}

.single-apps .single-header .btn-group .qr-img {
	display: none;
	position: absolute;
	left: 0;
	width: 100%;
	background: #fff;
	text-align: center;
	color: #999;
	border: 1px solid #eee;
	border-top: 0;
	padding-bottom: 20px;
}
.single-apps .single-header .btn-group .qr-img img {
	margin-top: 15px;
}

.single-apps .single-content {
	margin: 30px 0;
}

.apps-images {}
.apps-images .item {
	width: 295px;
}
.apps-images .item img {
	border-radius: 10px;
}

.apps-info {}
.apps-info ul {
	display: flex;
	justify-content: space-between;
}
.apps-info ul li {
	background-image: url(../images/apps-info-tag.png);
	background-repeat: no-repeat;
	background-position: center left;
	padding-left: 30px;
	color: #666 !important;
	font-size: 16px !important;
	width: auto !important;
}
.apps-info ul li b,
.apps-info ul li a {
	color: #666 !important;
	font-size: 16px !important;
}


.single-album {}
.single-album .single-header {
	background-image: url(../images/single-header-bg.png);
	background-size: cover;
	padding-top: 50px;
	flex: 1;
	overflow: hidden;
	position: relative;
}

.single-album .single-header h1 {
	font-size: 26px;
	color: #3e535f;
	font-weight: bold;
	margin-bottom: 45px;
	text-align: center;
	position: relative;
}
.single-album .single-header h1:after {}
.single-album .single-header h1:before {
	
}
.single-album .single-header .info {
    background-color: #ffffff90;
    border-radius: 10px;
    margin: 30px;
    padding: 20px;
}
.single-album .single-header .info ul {
	display: flex;
	justify-content: space-between;
}
.single-album .single-header .info ul li {
    background-image: url(../images/icon-tag.png);
    background-repeat: no-repeat;
    background-position: center left;
    padding-left: 20px;
    color: #888;
    font-size: 14px;
}
.single-album .single-header .xg-album {
	margin: 30px;
	display: flex;
	align-items: center;
}
.single-album .single-header .xg-album span {
	display: inline-block;
	padding: 10px 0;
	font-size: 15px;
	color: #50636e;
}
.single-album .single-header .xg-album a {
	display: inline-block;
	padding: 10px 18px;
	border-radius: 6px;
	border: solid 1px #c4cdd2;
	flex: 1;
	margin-right: 10px;
	font-size: 15px;
	color: #3e535f;
	text-align: center;
}

.single-album .editor-recom {
	width: 369px;
	margin-left: 30px;
	background-image: url(../images/editor-recom-bg.png);
	background-repeat: no-repeat;
	transform: translateY(-5px);
}
.single-album .editor-recom>.uk-flex {
	margin: 100px 35px;
	margin-bottom: 0;
}
.single-album .editor-recom .icon {
	width: 100px;
	height: 100px;
	border-radius: 20px;
	margin-right: 17px;
}
.single-album .editor-recom .title {
	margin-bottom: 20px;
}
.single-album .editor-recom .title a {
	font-weight: bold;
	font-size: 16px;
}
.single-album .editor-recom .info {}
.single-album .editor-recom .info span {
	margin-top: 15px;
	display: block;
	font-size: 14px;
	color: #746d62;
}
.single-album .editor-recom .desc {
	margin-top: 45px;
	color: #746d62;
	margin-left: 25px;
}

.single-album .album-warp {
	margin-top: 30px;
}
.single-album .album-warp .album-item {
	position: relative;

}
.single-album .album-warp .album-item:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 190px;
    border-radius: 10px;
    border: solid 1px #f6f6f6;
}
.single-album .album-warp .album-item>div {
	z-index: 10;
	position: relative;
}
.single-album .album-warp .album-item>.uk-flex {
	padding: 0 22px;
}
.single-album .album-warp .album-item .icon {
	background-image: url(../images/album-item-icon-bg.png);
	width: 120px;
	height: 132px;
	margin-right: 20px;
}
.single-album .album-warp .album-item .icon a {
	display: inline-block;
	position: absolute;
	top: 50%;
	left: 52%;
	transform: translate(-50%,-50%);
	overflow: hidden;
	width: 72px;
	height: 73px;
	border-radius: 15px;
	overflow: hidden;
}
.single-album .album-warp .album-item .title {
	margin-bottom: 25px;
	margin-top: 55px;
}
.single-album .album-warp .album-item .title a {
	font-weight: bold;
	font-size: 16px;
}
.single-album .album-warp .album-item .info {
	color: #888;
	font-size: 13px;
}
.single-album .album-warp .album-item .desc {
	color: #888;
	margin: 0 22px;
	margin-top: 15px;
}
.single-album .album-warp .album-item .desc span {
	color: var(--pm-c);
}
.single-album .album-warp .album-item .foot {
	position: relative;
	z-index: 10;
    margin-top: 22px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: #f7f7f7;
    border-radius: 0px 0px 10px 10px;
    display: block;
    color: #888;
}
.single-album .album-warp .album-item:hover .foot {
	background: var(--pm-c);
	color: #fff;
}



.part-hot-album {}
.part-hot-album .hot-album-warp {
	margin-top: 30px;
}
.part-hot-album .item {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px dashed #eee;
}
.part-hot-album .item:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border: 0;
}
.part-hot-album .item .icon {
	width: 90px;
	height: 90px;
	border-radius: 10px;
	margin-right: 15px;
}
.part-hot-album .item .title {
	margin-bottom: 15px;
}
.part-hot-album .item .title a {
	font-weight: bold;
	font-size: 16px;
}
.part-hot-album .item .info {
	color: #888;
	font-size: 14px;
}
.part-hot-album .item .desc {
	margin-top: 15px;
	color: #888;
	font-size: 14px;	
}


.single-gift {
	flex: 1;
	overflow: hidden;
	position: relative;
}
.single-gift .single-header .info ul li {
	width: 29% !important;
}
.single-gift .single-header .info ul li:last-child {
	width: 28% !important;
}



.single-bottom-news {}
.single-bottom-news .item .time{
    border: 1px solid #eee;
    display: inline-block;
    padding: 8px 16px;
    border-radius: 6px;
	margin-left: 5px;
}

.single-bottom-album {}
.single-bottom-album  .album-warp {
    margin-top: 35px;
    background: #f7f7f7;
    padding: 30px;
}
.single-bottom-album  .album-warp .item .left {
	background-image: none;
	padding-top: 0;
}
.single-bottom-album  .album-warp .item .thumb {
	width: 165px;
	height: 185px;
	background-image: url(../images/single-bottom-album-item-bg.png);
	position: relative;
	overflow: hidden;
}
.single-bottom-album  .album-warp .item .thumb a {
    display: block;
    width: 90px;
    height: 90px;
    border-radius: 15px;
    margin: 0 auto;
    overflow: hidden;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.single-bottom-album  .album-warp .item .left ul {
	margin-left: 0 !important;
	border-right: 1px dashed #e5e5e5;
	margin-right: 10px;
	margin-top: 0;
}

.single-bottom-gift {}
.single-bottom-gift .bottom-gift-warp {
	margin-top: 30px;
}
.single-bottom-gift .item {
	display: flex;
	align-items: center;
}
.single-bottom-gift .item .icon {
	width: 90px;
	height: 90px;
	border-radius: 12px;
	margin-right: 15px;
}
.single-bottom-gift .item .title {
	margin-bottom: 40px;
}
.single-bottom-gift .item .title a {
	font-size: 16px;
}
.single-bottom-gift .item .time {
    background-image: url(../images/icon-time.png);
    background-repeat: no-repeat;
    background-position: center left;
    padding-left: 30px;
    color: #acacac;
}
.single-bottom-gift .item .btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 10px;
    text-align: center;
    border: solid 1px #eeeeee;
    margin-left: 15px;
}



.footer {
	background: #333;
	padding: 45px;
	text-align: center;
	color: #999;
}
.footer p {
	margin: 15px 0;
}
.footer a,
.footer p {
	color: #999;
	font-size: 13px;
}

.foot-nav {
	margin-bottom: 15px;
}
.foot-nav a:after {
	content: '';
	display: inline-block;
	width: 1px;
	height: 10px;
	background: #999;
	margin: 0 5px 0 10px;
}
.foot-nav a:last-child:after {
	display: none;
}
.foot-cop {}
