@charset "UTF-8";

html,
body,
ul,
li,
ol,
dl,
dd,
dt,
p,
h1,
h2,
h3,
h4,
h5,
h6,
form,
fieldset,
legend,
img {
  margin: 0;
  padding: 0;
}

ul,
ol {
  list-style: none;
}

input[type="submit"],
input[type="reset"],
input[type="button"],
input[type="text"],
input[type="password"],
textarea,
button {
  -webkit-appearance: none;
}

input:focus {
  outline: none;
}

input::-moz-focus-inner {
  border: 0;
}

img {
  display: block;
}

.black {
  color: #000;
}

.black1 {
  color: #313131;
}
.fix360_gray {
    width: 100%;
    height: 3.6rem;
	background:#f2f2f2;
    overflow: hidden;
    clear: both;
}
.fix360_white{
    width: 100%;
    height: 3.6rem;
	background:#fff;
    overflow: hidden;
    clear: both;
}
.fix120_gray {
    width: 100%;
    height: 1.2rem;
	background:#f2f2f2;
    overflow: hidden;
    clear: both;
}
.fix120_white{
    width: 100%;
    height:1.2rem;
	background:#fff;
    overflow: hidden;
    clear: both;
}

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
        }

        
body {
    font-size: 1.6rem; /* 16px */
  color: #000;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  background: #F5F5F5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
:root {
    --primary-color: #FF0017;
    --dark-color: #18171A;
    --secondary-color: #666666;
    --grey-color: #F5F5F5;
    --white-color: #ffffff;
    --body-fonts: 'DM Sans', sans-serif;
    --title-fonts: 'Barlow Condensed', sans-serif;
	font-size: calc(10px + 0.1vw);
}
a {
  text-decoration: none;
  outline: none;
}

a: {
  -webkit-tap-heighlight-color: transparent;
}

a:link,
a:hover,
a:active,
a:visited {
  text-decoration: none;
}

.container {
  margin-right: auto;
  margin-left: auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 16rem;
}

        
        /* 顶部导航栏 */
        .top_header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 99;
            padding: 0 2rem; /* 20px */
            transition: background-color 0.3s ease; /* 添加过渡效果 */
            z-index: 9999;
        }
        
        /* 滚动时添加背景色 */
        .top_header.scrolled {
            background-color: rgba(0, 0, 0, 0.9); /* 半透明黑色背景 */
            backdrop-filter: blur(5px); /* 背景模糊效果 */
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2); /* 添加阴影增强层次感 */
        }
        
        .header_container {
            max-width: 160rem; /* 1600px */
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 9rem; /* 100px */
        }
        
        .logo {
            flex-shrink: 0;
			margin-top: .5rem;
        }
        
        .logo img {
            height: 7rem; /* 45px */
            width: auto;
        }
     
        /* 导航菜单 - 9个菜单项 */
        .nav_menu {
            display: flex;
            list-style: none;
            gap: 3.2rem; /* 25px */
        }
        
        .nav_item {
            position: relative;
        }
        
        .nav_link {
            text-decoration: none;
            color: white;
            font-size: 2rem; /* 20px */
            font-weight: 500;
            padding: 1rem 0; /* 10px */
            transition: color 0.3s ease;
            text-shadow: 0.1rem 0.1rem 0.2rem rgba(0,0,0,0.5); /* 1px 1px 2px */
        }
        
        .nav_link:hover {
            color: #C62E2C;
        }
        
        /* 二级菜单 - 修改背景色和悬停效果 */
        .submenu {
            position: absolute;
            top: 100%;
            left: 0;
            background: rgba(30, 40, 60, 0.95); /* 修改为深蓝色背景 */
            min-width: 18rem; /* 180px */
            box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.3); /* 0 5px 15px */
            border-radius: 0.4rem; /* 4px */
            opacity: 0;
            visibility: hidden;
            transform: translateY(1rem); /* 10px */
            transition: all 0.3s ease;
            padding: 1rem 0; /* 10px */
            border-top: 0.3rem solid #C62E2C; /* 添加顶部边框 */
        }
        
        .nav_item:hover .submenu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .submenu_item {
            border-bottom: 0.1rem solid rgba(255, 255, 255, 0.1); /* 修改为浅色分隔线 */
        }
        
        .submenu_item:last-child {
            border-bottom: none;
        }
        
        .submenu_link {
            display: block;
            padding: 1rem 2rem; /* 10px 20px */
            text-decoration: none;
            color: white;
            transition: all 0.3s ease; /* 添加过渡效果 */
            font-size: 1.4rem; /* 14px */
            position: relative;
        }
        
        .submenu_link:hover {
            background-color: #C62E2C; /* 悬停背景色 */
            color: white;
            padding-left: 2.5rem; /* 悬停时增加左侧内边距 */
        }
        
        /* 添加悬停时的指示器 */
        .submenu_link:hover::before {
            content: "›";
            position: absolute;
            left: 1.5rem;
            color: white;
        }
        
        /* 语言切换 */
        .language_switch {
            position: relative;
            display: inline-block;
        }
        
        .language_current {
            padding: 0.8rem 1.6rem; /* 8px 16px */
            background: rgba(255, 255, 255, 0.2);
            border: 0.1rem solid rgba(255, 255, 255, 0.3); /* 1px */
            border-radius: 0.4rem; /* 4px */
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 0.8rem; /* 8px */
            min-width: 8rem; /* 80px */
            transition: all 0.3s ease;
            color: white;
        }
        
        .language_current:hover {
            background: rgba(255, 255, 255, 0.3);
        }
        
        .language_dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: rgba(30, 40, 60, 0.95); /* 与二级菜单背景色一致 */
            border: 0.1rem solid rgba(255, 255, 255, 0.2); /* 1px */
            border-radius: 0.4rem; /* 4px */
            box-shadow: 0 0.2rem 0.8rem rgba(0,0,0,0.3); /* 0 2px 8px */
            display: none;
            z-index: 1001;
        }
        
        .language_option {
            padding: 0.8rem 1.6rem; /* 8px 16px */
            cursor: pointer;
            transition: all 0.3s ease;
            color: white;
        }
		.language_option a{
			color: #fff;
		}
        
        .language_option:hover {
            background-color: #C62E2C;
            padding-left: 2rem; /* 悬停时增加左侧内边距 */
        }
        
        .language_option.active {
            background-color: #C62E2C;
            color: white;
        }
        
        .language_switch:hover .language_dropdown {
            display: block;
        }
        
        /* 轮播图 - 根据分辨率动态调整高度 */
        .banner_section {
            margin-top: 0;
            position: relative;
            height: 78rem; /* 780px - 默认高度 */
            overflow: hidden;
        }
        
        .banner_slider {
            width: 100%;
            height: 100%;
            position: relative;
            touch-action: pan-y;
        }
        
        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.5s ease;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
        }
        .slide::before {
            content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.8), rgba(70,70,70,0.5));/* 渐变效果 */
  background-blend-mode: multiply; /* 混合模式 */
}
        .slide.active {
            opacity: 1;
        }
        
        /* 轮播图文字内容 */
        .slide-content {
			width:90%;
            max-width: 160rem; /* 1200px */
            margin: 0 auto;
            padding: 0 2rem; /* 20px */
            color: white;
            text-shadow: 0.2rem 0.2rem 0.4rem rgba(0, 0, 0, 0.7); /* 2px 2px 4px */
            z-index: 99;
        }
        
        .slide-title {
            font-size: 4.8rem; /* 48px */
            font-weight: 700;
            margin-bottom: 2rem; /* 20px */
            line-height: 1.2;
            opacity: 0;
            transform: translateY(3rem); /* 30px */
            transition: all 0.6s ease 0.3s;
        }
        
        .slide.active .slide-title {
            opacity: 1;
            transform: translateY(0);
        }
        
        .slide-desc {
            font-size: 3.2rem; /* 32px */
            margin-bottom: 3rem; /* 30px */
            max-width: 60rem; /* 600px */
            opacity: 0;
            transform: translateY(3rem); /* 30px */
            transition: all 0.6s ease 0.5s;
        }
        
        .slide.active .slide-desc {
            opacity: 1;
            transform: translateY(0);
        }
        
        .slide-btn {
            display: inline-block;
            padding: 1.2rem 4rem 1.2rem 2rem; /* 12px 30px */
            background:#C62E2C url(../images/icon5.png) no-repeat 9.4rem 1.6rem;
			background-size:1.8rem;
			font-size: 1.8rem;
            color: white;
            text-decoration: none;
            border-radius: 0.4rem; /* 4px */
            font-weight: 500;
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(3rem); /* 30px */
            transition: all 0.6s ease 0.7s;
			border-radius: 0 2rem 2rem 0;
        }
        
        .slide.active .slide-btn {
            opacity: 1;
            transform: translateY(0);
        }
        
        .slide-btn:hover {
            background-color: #2980b9;
            transform: translateY(-0.2rem); /* -2px */
            box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.3); /* 0 5px 15px */
        }
        
        /* 轮播图导航按钮 */
        .slider_nav {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 2rem; /* 20px */
            transform: translateY(-50%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .banner_section:hover .slider_nav {
            opacity: 1;
        }
        
        .nav_btn {
            width: 5rem;
            height: 5rem;
            background: rgba(255, 255, 255, 0.8);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.3s ease;
        }
		.nav_btn svg {
		    width: 4rem;
		    height: 4rem;
		    fill: currentColor;
		}
        
        .nav_btn:hover {
            background: rgba(255, 255, 255, 1);
        }
        
        /* 轮播图指示器 */
        .slider_dots {
            position: absolute;
            bottom: 3rem; /* 30px */
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 1rem; /* 10px */
        }
        
        .dot {
            width: 1.2rem; /* 12px */
            height: 1.2rem; /* 12px */
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        
        .dot.active {
            background: rgba(255, 255, 255, 1);
        }
        
        /* 移动端菜单按钮 */
        .mobile_menu_btn {
            display: none;
            flex-direction: column;
            gap: 0.4rem; /* 4px */
            background: none;
            border: none;
            cursor: pointer;
            padding-top:1rem;
			padding-right: 1rem;
        }
        
        .menu_line {
            width: 3.5rem; /* 25px */
            height: 0.4rem; /* 3px */
            background: white;
            transition: all 0.3s ease;
        }
        
        /* 移动端菜单 */
        .mobile_menu {
            position: fixed;
            top: 8rem; /* 80px */
            left: 0;
            width: 100%;
            height: calc(100vh - 8rem); /* 80px */
            background: rgba(30, 40, 60, 0.95); /* 与二级菜单背景色一致 */
            transform: translateX(-100%);
            transition: transform 0.3s ease;
            z-index: 98;
            padding: 2rem; /* 20px */
            overflow-y: auto;
        }
        
        .mobile_menu.active {
            transform: translateX(0);
        }
        
        .mobile_nav {
            list-style: none;
        }
        
        .mobile_nav_item {
            border-bottom: 0.1rem solid rgba(255, 255, 255, 0.1); /* 修改为浅色分隔线 */
        }
        
        .mobile_nav_link {
            display: block;
            padding: 1.5rem 0; /* 15px */
            text-decoration: none;
            color: white;
            font-size: 2.4rem; /* 16px */
        }
        
        .mobile_submenu {
            list-style: none;
            padding-left: 2rem; /* 20px */
            display: none;
        }
        
        .mobile_submenu.active {
            display: block;
        }
        
        .mobile_submenu_item {
            border-bottom: 0.1rem solid rgba(255, 255, 255, 0.1); /* 修改为浅色分隔线 */
			font-size: 2.2rem;
        }
        
        .mobile_submenu_link {
            display: block;
            padding: 1.2rem 0; /* 12px */
            text-decoration: none;
            color: #ccc;
            transition: all 0.3s ease;
        }
        
        .mobile_submenu_link:hover {
            color: white;
            padding-left: 1rem; /* 悬停时增加左侧内边距 */
        }
        
        /* 在小分辨率下的额外调整 */
        @media (max-width: 1200px) {
            .slide-title {
                font-size: 4rem; /* 40px */
            }
            
        }
        
        @media (max-width: 1024px) {
            .nav_menu {
                gap: 2rem; /* 20px */
            }
            
            .nav_link {
                font-size: 1.5rem; /* 15px */
            }
            
            .slide-title {
                font-size: 3.6rem; /* 36px */
            }
            
        }
        
        @media (max-width: 900px) {
            .banner_section {
                height: 50rem; /* 在小分辨率下固定一个合适的高度，而不是按比例缩放 */
            }
            
            .nav_link {
                font-size: 1.8rem !important; /* 确保导航文字足够大 */
            }
            
            .slide-title {
                font-size: 3.2rem !important; /* 轮播图标题调整 */
            }
            
            .slide-btn {
                padding: 1rem 2.5rem; /* 调整按钮大小 */
                font-size: 1.6rem;
            }
        }
        
        @media (max-width: 768px) {
			.logo img{
				height: 6rem;
			}
            .nav_menu {
                display: none;
            }
            
            .language_switch {
                display: none;
            }
            
            .mobile_menu_btn {
                display: flex;
            }
            
            .banner_section {
                height: 40rem; /* 在平板下进一步调整高度 */
            }
            
            .nav_btn {
                width: 4rem; /* 40px */
                height: 4rem; /* 40px */
                font-size: 1.6rem; /* 16px */
            }
            
            .header_container {
                height: 7rem; /* 70px */
            }
            
            .mobile_menu {
                top: 7rem; /* 70px */
                height: calc(100vh - 7rem); /* 70px */
            }
            
            .slide-title {
                font-size: 2.8rem !important;
            }
            
            .slide-desc {
                font-size: 2.4rem !important;
            }
        }
        
        @media (max-width: 480px) {
            .banner_section {
                height: 30rem; /* 在手机上使用更合适的高度 */
            }
            
            .slide-title {
                font-size: 2.2rem !important;
            }
            
            .slide-desc {
                font-size: 1.8rem !important;
                margin-bottom: 2rem;
            }
            
            .slide-btn {
                padding: 0.8rem 2rem; /* 10px 20px */
                font-size: 1.4rem; /* 14px */
            }
            
            .slider_dots {
                bottom: 2rem;
            }
        }
/* 友情链接 */
.link{
	width:100%;
	background: #fff;
	padding-bottom: 6rem;
	overflow: hidden;
	clear: both;
}
.link-container {
	display: flex; /* 使用Flexbox布局 */
    justify-content: space-between; /* 子元素两端对齐，中间自动分配空间 */
    width: 170rem; /* 容器宽度占满父元素 */
    max-width: 100%;
    margin: 0 auto; /* 可选：居中容器 */
	margin-top: .4rem;
    box-sizing: border-box; /* 确保padding不会增加容器总宽度 */
}
.link-item {
	width:16%;
}
.link-item img {
   width: 98%;
    height: auto;
    display: block;
}
/* 小屏幕布局（宽度小于768px时） */
@media (max-width: 767px) {
	.link-container{
		width: 100%;
		padding:0 10px;
	}
	.link-item{
		width: auto;
		margin-bottom: 2rem;
	}
	.link-container {
		display: grid;
		grid-template-columns:repeat(3, 1fr); /* 小屏幕显示3列 */
	}
}
.footer {
            background-color: #1a2c42;
            color: white;
            padding: 4rem 11rem;
			clear: both;
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            border-bottom: 1px solid #2d415c;
        }
        
        .footer-column {
            flex: 1;
            margin-right: 30px;
        }
        
        .footer-column:last-child {
            margin-right: 0;
        }
        
        .footer-title {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 20px;
            color: white;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
			font-size: 14px;
        }
        
        .footer-links a {
            color: #c0c0c0;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: white;
        }
        
        .contact-info {
            color: #c0c0c0;
            line-height: 1.8;
			font-size: 14px;
        }
        
        .contact-info p {
            margin-bottom: 10px;
        }
        
        .qrcode-section {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .qrcode {
            width: 120px;
            height: 120px;
            background-color: #2d415c;
            margin-bottom: 15px;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #c0c0c0;
            font-size: 14px;
        }
        
        .qrcode-text {
            font-size: 14px;
            color: #c0c0c0;
        }
        
        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 40px 0;
        }
        
        .copyright {
            font-size: 14px;
            color: #c0c0c0;
        }
        
        .footer-links-bottom {
            display: flex;
            gap: 20px;
        }
        
        .footer-links-bottom a {
            color: #c0c0c0;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s;
        }
        
        .footer-links-bottom a:hover {
            color: white;
        }
        
        .main-title {
            font-size: 32px;
            text-align: center;
            margin-bottom: 30px;
            color: #0056a6;
        }
        
        .intro-text {
            font-size: 18px;
            line-height: 1.6;
            margin-bottom: 30px;
            text-align: center;
        }
        
        .features {
            display: flex;
            justify-content: space-between;
            margin-top: 50px;
        }
        
        .feature {
            flex: 1;
            text-align: center;
            padding: 20px;
        }
        
        .feature-icon {
            font-size: 40px;
            color: #0056a6;
            margin-bottom: 15px;
        }
        
        .feature-title {
            font-size: 20px;
            margin-bottom: 10px;
            color: #333;
        }
        
        .feature-desc {
            color: #666;
            line-height: 1.5;
        }
        
        /* 响应式设计 */
        /* 当页面宽度小于980px时，分多排显示 */
        @media (max-width: 980px) {
            .footer-content {
                flex-wrap: wrap;
            }
            
            /* 企业文化和旗下公司放一排 */
            .footer-column:nth-child(1),
            .footer-column:nth-child(2) {
                flex: 0 0 48%;
                margin-right: 0;
                margin-bottom: 30px;
            }
            
            .footer-column:nth-child(1) {
                margin-right: 4%;
            }
            
            /* 人力资源和联系我们放一排 */
            .footer-column:nth-child(3),
            .footer-column:nth-child(4) {
                flex: 0 0 48%;
                margin-right: 0;
                margin-bottom: 30px;
            }
            
            .footer-column:nth-child(3) {
                margin-right: 4%;
            }
            
            /* 公众号单独放一排 */
            .footer-column:nth-child(5) {
                flex: 0 0 100%;
                margin-top: 10px;
            }
        }
        
        /* 当页面宽度小于486px时，所有栏目单排显示 */
        @media (max-width: 486px) {
            .header {
                flex-direction: column;
                text-align: center;
                padding: 20px;
            }
            
            .logo {
                margin-bottom: 0;
            }
			.logo img{
				height: 6rem;
			}
            
            .nav {
                flex-wrap: wrap;
                justify-content: center;
                gap: 15px;
            }
            .footer{
                padding:40px 10px;
            }
            
            .footer-content {
                padding: 0 ;
                display: block;
            }
            
            .footer-column {
                flex: 0 0 100%;
                margin-right: 0;
                margin-bottom: 25px;
            }
            
            .footer-column:nth-child(1),.footer-column:nth-child(3){
                margin-left: 2%;
                width: 40%;
                float: left;
            }
            .footer-column:nth-child(2),.footer-column:nth-child(4) {
               
                margin-right: 0;
                width: 52%;
                float: left;
                
            }
            .footer-column:nth-child(1) {
        margin-right: 0;
    }
    .footer-column:nth-child(3){
        clear: both;
    }
    .footer-column:nth-child(5){
        width: 100%;
        clear: both;;
    }
}
            
            .footer-bottom {
                flex-direction: column;
                text-align: center;
                padding: 20px 20px 0;
            }
            
            .footer-links-bottom {
                margin-top: 10px;
            }
            
            .main-content {
                padding: 20px;
            }
            
            .features {
                flex-direction: column;
            }
            
            .feature {
                margin-bottom: 20px;
            }
        }
        
        /* 小屏幕字体调整 */
        @media (max-width: 486px) {
            .logo-text {
                font-size: 20px;
            }
            
            .nav a {
                font-size: 16px;
            }
            
            .main-title {
                font-size: 24px;
            }
            
            .intro-text {
                font-size: 16px;
            }
            
            .footer-title {
                font-size: 16px;
            }
            
            .footer-links a,
            .contact-info,
            .qrcode-text {
                font-size: 14px;
            }
        }

/* 分页样式 */
/* 分页容器样式 */
.pages{
    margin: 0 auto;
    width: 100%;
    clear: both;
    
}
.pagination {
    width: 600px;
    margin: 20px auto; /* 居中显示 */
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px; /* 页项之间的间距 */
}

/* 分页项通用样式 */
.page-item {
    margin: 0;
}

/* 分页链接通用样式 */
.page-link {
    display: inline-block;
    padding: 8px 14px;
    color: #333;
    text-decoration: none;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 14px;
}

/* 禁用状态样式 */
.page-item.disabled .page-link {
    color: #999;
    background-color: #f5f5f5;
    border-color: #ddd;
    cursor: not-allowed;
}

/* 当前页样式 */
.page-item.active .page-link {
    background-color: #C62E2C;
    color: white;
    border-color: #C62E2C;
    font-weight: bold;
}

/* 悬停样式 */
.page-item:not(.disabled) .page-link:hover {
    background-color: #f8f9fa;
    border-color: #C62E2C;
    color: #C62E2C;
}

/* 页码输入框样式 */
.jumpto {
    display: flex;
    align-items: center;
    gap: 5px;
}

.page_number {
    width: 50px;
    padding: 6px 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-align: center;
    font-size: 14px;
}

.page_number:focus {
    outline: none;
    border-color: #C62E2C;
}

/* 跳转按钮样式 */
.submit {
    padding: 6px 12px;
    background-color: #C62E2C;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 14px;
}

.submit:hover {
    background-color: #a82523;
}

/* 响应式调整 */
@media (max-width: 640px) {
    .pagination {
        width: 100%;
        padding: 0 10px;
    }
    
    .page-link {
        padding: 6px 10px;
        font-size: 12px;
    }
}


/* 移动端滚动效果样式 */
.top_header.scrolled {
    background: #000;
}

.top_header.scrolled .nav_link {
    color: #fff;
}

.top_header.scrolled .language_switch {
    color: #fff;
}

.top_header.scrolled .menu_line {
    background: #fff;
}
