.hd-img-section {
    background-image: url(/assets2/image/hd-big-bg-4.png);
}

.hd-img-section .hd-title {
    color: #33B0FA;
}

.title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: fit-content;
    min-width: 360px;
    min-height: 220px;
    z-index: 1;
}

.title-wrapper .title-txt {
    color: #33B0FA;
    font-size: 64px;
    font-weight: bold;
}

.tit-icon-15 {
    width: 66px;
    margin-left: 8px;
}

.bg-18 {
    position: absolute;
    top: 0%;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.list-wrapper {
    padding: 40px 0;
}

.list-wrapper.layui-container {
    max-width: 100%;
    padding: 40px 60px;
}

.download-item {
    padding: 10px 10px 36px 10px;;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.download-item:hover {
    transform: translateY(-5px);
}

.item-top {
    position: relative;
    margin-bottom: 12px;
}

.item-top .img{
	padding:9px; border-radius:6px; border:solid 1px #f0f0f0; border-radius:3px; background:white;
}

.item-top .img img{
	width:100%; height:auto;
}

.doc-title{
	text-align:center; padding:7px 0px; color: var(--font-color); font-family: PingFang HK, PingFang HK; font-size:16px;
} 
	

.doc-name {
    font-family: PingFang HK, PingFang HK;
    font-weight: 400;
    font-size: 24px;
    color: var(--font-color);
    line-height: 29px;
    position: absolute;
    top: 50%;
    left: 15%;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    width: 80%;
    z-index: 1;
}

.doc-img-wrapper {
    width: 100%;
    padding-top: 141%;
    /* A4紙張比例 */
    position: relative;
    background: #f5f5f5;
    border: 1px dashed #ddd;
    border-radius: 5px;
    overflow: hidden;
}

.doc-img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-bottom {
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
}

.layui-btn {
    width: 50%;
    height: 44px;
    line-height: 1;
    font-size: 14px;
    border-radius: 44px;
    display: flex;
    align-items: center;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.view-btn {
    background-color: #FFF1E2;
    color: var(--font-color);
}

.view-btn:hover {
    background-color: #4CC1F6;
    opacity: 0.8;
}

.download-btn {
    background-color: #FFF1E2;
    color: var(--font-color);
}

.download-btn:hover {
    background-color: #4CC1F6;
    opacity: 0.8;
}

.layui-btn i {
    display: none;
}

.view-btn::before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    background: url('/assets2/image/view-icon.png') no-repeat center/contain;
    margin-right: 5px;
    margin-bottom: 1px;
}

.download-btn::before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    min-width: 18px;
    background: url('/assets2/image/download-icon.png') no-repeat center/contain;
    margin-right: 5px;
    margin-bottom: 3px;
}

.view-btn:hover::before {
    background: url('/assets2/image/view-icon-white.png') no-repeat center/contain;
}

.download-btn:hover::before {
    background: url('/assets2/image/download-icon-white.png') no-repeat center/contain;
}

.layui-row {
    display: flex;
    flex-wrap: wrap;
    margin: -10px;
}

.layui-col-md2 {
    width: 20%;
    flex: 0 0 20%;
    max-width: 20%;
    box-sizing: border-box;
}

.accessibility-10-3 .layui-col-md2 {
    width: 30%;
    flex: 0 0 30%;
    max-width: 30%;
}

@media screen and (min-width: 1280px) {
    .layui-col-md2 {
        flex: 0 0 20%;
        max-width: 20%;
    }
    
    .doc-title{
	    min-height: 62px;
    }
    
}

.M-item-bottom{
    display: none;
}

.pt-section{
    padding-top: 30px;
}




/* 分页基础样式 */
.pagination {
  display: flex;
  justify-content: center;
  padding: 0;
  margin: 30px 0;
  list-style: none;
  flex-wrap: wrap; /* 手机端换行 */
}

.pagination li {
  margin: 0 4px; /* 间距缩小适应手机 */
}

.pagination li a,
.pagination li span {
  display: inline-block;
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  color: #666;
  text-decoration: none;
  transition: all 0.3s;
  min-width: 40px; /* 固定宽度避免跳动 */
  text-align: center;
}

/* 主色调应用 */
.pagination li a:hover {
  background-color: #f5f5f5;
}

.pagination li.active span {
  background-color: #88654F;
  border-color: #88654F;
  color: white;
}

.pagination li.disabled span {
  color: #aaa;
  cursor: not-allowed;
}

/* 手机端优化 */
@media (max-width: 576px) {
  .pagination li {
    margin: 4px; /* 增加手机端间距 */
  }
  
  .pagination li a,
  .pagination li span {
    padding: 6px 10px;
    min-width: 36px;
  }
}

/* 电脑端悬停效果 */
@media (hover: hover) {
  .pagination li a:hover {
    background-color: #88654F;
    color: white;
    border-color: #88654F;
  }
}