/* WindsPhoto */
.ll{float:left}
.rr{float:right}

a:link .wp_top, a:visited .wp_top {
	padding:2px;
	border:1px solid #CCCCCC;
}

a:link .wp_small, a:visited .wp_small {
	padding:2px;
	border:1px solid #ffffff;
}

a:hover .wp_top,a:hover .wp_small {
	padding:2px;
	border:1px solid #5AA723;
}

.wp_album_info{}
.wp_album_intro{margin:5px 0 5px 0;}
.wp_photo_show{text-align:center;margin:auto;}
.wp_photo_toolbar{margin:0 0 10px 0;text-align:center;}

#wp_waterfall .wp_waterfall{
	float:left;
	margin:5px 5px;
	border:1px solid #ccc;
}

#wp_waterfall img{
	position:relative;
	height:auto;
	overflow:hidden;
}

#divWP_Newestlist ul{
	overflow:hidden;	
}

#divWP_Newestlist li{
	width:40%;
	height:auto;
	float:left;
	background-image: none;
}

#divWP_Newestlist span{
	display:none;
}

#divWP_Newestlist img{
	width:100%;
}

#divWP_Photomap .function_c{
	padding:0;
	margin:0;
	text-align:center;
}

#divWP_Photomap .wp_geo img{
	padding:1em 0 1em 0;
}

/* =============== 分页样式 - 手动添加 =============== */
.pagination {
    display: flex;
    justify-content: center;
    margin: 20px 0;
    font-size: 14px;
    flex-wrap: wrap;
}

.pagination .nav-prev,
.pagination .nav-next {
    color: #dc3545;
    margin: 0 5px;
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;           /* 关键：垂直居中 */
    justify-content: center;     /* 水平居中 */
    min-width: 20px;
    height: 50px;                /* 与 .page 高度一致 */
    padding: 0;                  /* 避免额外边距 */
    border: none;
    cursor: pointer;
}

.pagination .nav-prev.disabled,
.pagination .nav-next.disabled {
    color: #ccc;
    cursor: not-allowed;
}

.pagination .page {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 1px solid #ddd;
    background-color: #f8f9fa;
    color: #333;
    margin: 0 3px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s;
}

.pagination .page:hover:not(.active) {
    background: #e9ecef;
    color: #007bff;
}

.pagination .page.active {
    background: #000;
    color: white;
    border-color: #000;
}

.pagination .page.dots {
    color: #999;
    background: transparent;
    border: none;
    cursor: default;
}