.container {
    width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
body {
    min-width: 1200px;
    overflow-x: auto;
}
/* Header styles */
.header {
    height: 95px;
    background: #fff;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 50px;
    margin-right: 10px;
}

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
}

.logo-text-cn {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    line-height: 1.2;
}

.logo-text-en {
    font-size: 12px;
    color: #666;
    letter-spacing: 1px;
    margin-top: 2px;
}

.logo {
    font-size: 20px;
    padding: 10px 0;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    width: 50px;
    height: 50px;
    margin-right: 10px;
}

.logo-text {
    
    font-weight: bold;
    color: #0066cc;
    line-height: 1.2;
}

.logo-text-sub {
   
    color: #999;
    margin-left: 5px;
}

/* Navigation styles */
.nav{
    width:570px;
}
.nav ul {
    display: flex;
    gap: 40px;
}

.nav-item {
    position: relative;
}

.nav-item > a {
    display: block;
    padding: 35px 0;
    color: #333;
    font-size: 16px;
    position: relative;
}

.nav-item > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #007AFF;
    transition: all 0.3s;
    transform: translateX(-50%);
}

.nav-item > a:hover::after,
.nav-item > a.active::after {
    width: 100%;
}

/* Submenu styles */
.submenu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    min-width: 150px;
    padding: 15px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.submenu a {
    display: block;
    padding: 10px 20px;
    color: #666;
    text-align: center;
    transition: all 0.3s;
}

.submenu a:hover {
    color: #007AFF;
    background: #f5f5f5;
}

.nav-item:hover .submenu {
    opacity: 1;
    visibility: visible;
}

/* Banner styles */
.banner {
    margin-top: 95px;
   
    position: relative;
    overflow: hidden;
}

.banner-wrapper {
    height: 100%;
    display: flex;
    transition: transform 0.5s ease;
}

.banner-slide {
    flex: 0 0 100%;
    height: 100%;
    position: relative;
}

.banner-slide img {
    width: 100%;
    
   
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
}

.banner-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: bold;
}

.banner-content p {
    font-size: 24px;
}

/* Banner dots */
.banner-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 30px;
    height: 3px;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: #fff;
}

/* Data section styles */
.data-section {
    padding: 60px 0;
    background: #f5f5f5;
}

.data-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.data-stats {
    flex: 1;
    display: flex;
    gap: 40px;
}

.stat-item {
    text-align: center;
}

 .number {
    font-size: 50px;
    color: #007bff;
    font-weight: bold;
    margin-bottom: 10px;
}

.stat-item .label {
    font-size: 16px;
    color: #333;
}

.data-image {
    flex-shrink: 0;
    width: 496px;
    height: 512px;
    margin-left: 40px;
}

.data-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive styles */
 

/* Chairman's Message Section */
.chairman-message {
    padding: 80px 0;
    background-color: #fff;
    border-bottom: 1px solid #e5e5e5;  
}

.message-content {
    max-width: 1200px;  
    margin: 0 auto;
}

.section-title {
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #007bff;  
}

.message-text {
    margin-top: 40px;
    line-height: 1.8;
    color: #333;
}

.message-intro {
    font-size: 18px;
    color: #1a1a1a;
    margin-bottom: 30px;
    text-align: justify;
}

.message-subtitle {
    font-size: 24px;
    color: #1a1a1a;
    margin: 40px 0 20px;
    font-weight: bold;
}

.achievement-list, .future-plans {
    list-style: none;
    padding-left: 20px;
    margin: 20px 0;
}

.achievement-list li, .future-plans li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
    line-height: 1.6;
}

.achievement-list li:before, .future-plans li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background-color: #007bff;
    border-radius: 50%;
}

.message-closing {
    margin-top: 40px;
    border-top: 1px solid #eee;
    padding-top: 30px;
}

.message-closing p {
    margin-bottom: 20px;
    text-align: justify;
}

.message-signature {
    margin-top: 40px;
    text-align: right;
}

.message-signature p {
    margin: 5px 0;
    font-weight: 500;
}

/* Company History Section */
.company-history {
    padding: 80px 0;
    background-color: #fff;
    border-bottom: 1px solid #e5e5e5;  
}

.history-content {
    max-width: 1200px;
    margin: 0 auto;
}

.history-text {
    margin-top: 40px;
    line-height: 1.8;
    color: #333;
}

.history-intro {
    font-size: 20px;
    color: #1a1a1a;
    margin-bottom: 30px;
    text-align: justify;
    font-weight: 500;
}

.history-paragraph {
    font-size: 16px;
    margin-bottom: 25px;
    text-align: justify;
    line-height: 1.8;
}

/* Company Detail Section */
.company-detail {
    padding: 80px 0;
    background-color: #fff;
    border-bottom: 1px solid #e5e5e5;
}

.detail-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.detail-image {
    margin-bottom: 40px;
    text-align: center;
    overflow: hidden;
}

.detail-image img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.detail-text {
    color: #333;
}

.detail-paragraph {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: justify;
    color: #333;
}

.subsidiary-companies {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.subsidiary-companies .detail-paragraph {
    color: #555;
    line-height: 2;
    font-size: 15px;
}

/* ...existing styles... */

.company-intro {
    padding: 120px 0;  
    background: #fff;
}

.intro-content {
    display: flex;
    justify-content: space-between;
    gap: 80px;  
    position: relative;  
}

.intro-left {
    flex: 1;
    padding-right: 100px;  
}

.section-title {
    margin-bottom: 60px;
}

.cn-title {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
}

.en-title {
    font-size: 16px;
    color: #999;
    text-transform: uppercase;
}

.intro-text {
    margin-bottom: 70px;
    line-height: 1.8;
    color: #666;
}

.company-stats {
    display: flex;
    align-items: center;
    padding: 40px;  
    background: #f8f8f8;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 150%;  
    position: relative;  
    z-index: 1;  
}

.stat-box {
    flex: 1;
    text-align: center;
}

.number-wrapper {
    font-size: 36px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.unit {
    font-size: 24px;
    margin-left: 4px;
}

.stat-label {
    font-size: 16px;
    color: #666;
}

.divider {
    width: 1px;
    height: 50px;
    background: #ddd;
    margin: 0 20px;
}

.intro-right {
    flex: 0 0 496px;
    height: 512px;
    position: relative;  
    z-index: 0;  
}

.intro-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* ...remaining styles... */

.tzly-section {
    padding: 80px 0;
    background: #f7f7f7;
}

.tzly-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}

.tzly-title .en-title {
    font-size: 16px;
    color: #333;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.tzly-title .cn-title {
    font-size: 32px;
    font-weight: bold;
    color: #333;
}

.tzly-desc {
    font-size: 16px;
    color: #929292;
    max-width: 400px;
    line-height: 1.6;
}

.tzly-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.tzly-item {
    position: relative;
    height: 460px; 
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 20px;
}

/* 为新增的项目添加背景图片 */
.tzly-item:nth-child(5) .tzly-item-bg {
    background-image: url('../images/tzly-5.jpg');
}

.tzly-item:nth-child(6) .tzly-item-bg {
    background-image: url('../images/tzly-6.jpg');
}

.tzly-item:nth-child(7) .tzly-item-bg {
    background-image: url('../images/tzly-7.jpg');
}

.tzly-item:nth-child(8) .tzly-item-bg {
    background-image: url('../images/tzly-8.jpg');
}

.tzly-item-bg {
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    transition: all 0.3s ease;
}

.tzly-item:nth-child(1) .tzly-item-bg {
    background-image: url('../images/tzly-1.jpg');
}

.tzly-item:nth-child(2) .tzly-item-bg {
    background-image: url('../images/tzly-2.jpg');
}

.tzly-item:nth-child(3) .tzly-item-bg {
    background-image: url('../images/tzly-3.jpg');
}

.tzly-item:nth-child(4) .tzly-item-bg {
    background-image: url('../images/tzly-4.jpg');
}

.tzly-item-text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    color: #fff;
    text-align: center;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
}

.tzly-item-text h4 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.tzly-item-text .divider {
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
    margin: 15px auto;
}

.tzly-item-text p {
    font-size: 14px;
    opacity: 0.8;
}

.tzly-item:hover .tzly-item-bg {
    transform: scale(1.1);
}

 

/* ...remaining styles... */

.nnew-section {
    padding: 80px 0;
    background: #fff;
}

.nnew-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}

.nnew-title .en-title {
    font-size: 16px;
    color: #333;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.nnew-title .cn-title {
    font-size: 32px;
    font-weight: bold;
    color: #333;
}

.nnew-more {
    font-size: 14px;
    color: #999;
    text-decoration: none;
}

.nnew-more:hover {
    color: #007AFF;
}

.nnew-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 40px;
}

.nnew-item {
    display: flex;
    padding-bottom: 20px;
    border-bottom: 1px dashed #e5e5e5;
}

.nnew-date {
    flex: 0 0 100px;
    padding-right: 20px;
}

.nnew-day {
    font-size: 36px;
    font-weight: bold;
    color: #333;
    line-height: 1;
    margin-bottom: 5px;
}

.nnew-month {
    font-size: 14px;
    color: #999;
}

.nnew-info {
    flex: 1;
}

.nnew-info h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
    font-weight: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.nnew-info p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

 

/* ...existing code... */

.n1new-section {
    padding: 80px 0;
    background: #fff;
}

.n1new-section .container {
    width: 1200px;
    margin: 0 auto;
}

.n1new-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.n1new-title .en-title {
    font-size: 36px;
    color: #999;
    font-family: Arial;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.n1new-title .cn-title {
    font-size: 30px;
    color: #333;
    font-weight: bold;
}

.n1new-more a {
    color: #666;
    font-size: 14px;
    text-decoration: none;
}

.n1new-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.n1new-item {
    display: flex;
    padding-bottom: 20px;
    border-bottom: 1px dashed #ddd;
}

.n1new-date {
    width: 100px;
    text-align: center;
    margin-right: 20px;
}

.n1new-date .day {
    display: block;
    font-size: 36px;
    color: #333;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 5px;
}

.n1new-date .year {
    display: block;
    font-size: 14px;
    color: #999;
}

.n1new-info {
    flex: 1;
}

.n1new-info h4 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
    font-weight: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.n1new-info p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.n1new-item:hover .n1new-date .day {
    color: #1e50ae;
}

.n1new-item:hover .n1new-info h4 {
    color: #1e50ae;
}

/* ...existing code... */

.partner-section {
    padding: 80px 0;
    background: #f7f7f7;
}

.partner-section .container {
    width: 1200px;
    margin: 0 auto;
}

.partner-header {
    text-align: center;
    margin-bottom: 50px;
}

.en-partner-title {
    font-size: 32px;
    color: #999;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.cn-partner-title {
    font-size: 32px;
    color: #333;
    font-weight: bold;
}

.partner-content {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
}

.partner-item {
    border: 1px solid #e5e5e5;
    background-color: #fff;
  
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.partner-item:hover {
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

.partner-item img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

 
/* ...existing code... */

.footer {
   
    background: #fff
}

.footer-main {
   
    padding: 60px 0;
   
}

.footer-content {
      width:1200px;
    margin:0 auto;
    justify-content: space-between;
}

.footer-nav {
    float:left;
    display: flex;
    gap: 60px;
}

.footer-nav-item dt {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.footer-nav-item dd {
    margin-bottom: 12px;
}

.footer-nav-item dd a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-nav-item dd a:hover {
    color: #1e50ae;
}

.footer-right {
    float:right;
    width: 300px;
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.social-item {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: #f5f5f5;
    border-radius: 50%;
    transition: all 0.3s;
}

.social-item i {
    font-size: 20px; 
    color: #666;
    transition: color 0.3s;
}

/* 定义各个图标的特定颜色 */
.social-item:hover {
    background: #1e50ae;
}

.social-item:hover i {
    color: #fff;
}

/* 二维码样式 */
.social-item .qrcode {
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 120px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    pointer-events: none;
}

.social-item .qrcode::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #fff;
}

.social-item .qrcode img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.social-item:hover .qrcode {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-10px);
}

.footer-links select {
    width: 100%;
    padding: 10px;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    color: #666;
    font-size: 14px;
    outline: none;
    cursor: pointer;
}

.footer-bottom {
     border-top: 1px solid #e5e5e5;
    clear:both;
    padding: 20px 0;
    background: #fff;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #999;
}

.footer-bottom-left {
    display: flex;
    gap: 20px;
}

.footer-bottom-left a,
.footer-bottom-right a {
    color: #999;
    text-decoration: none;
}

.footer-bottom-right {
    display: flex;
    gap: 20px;
}

 

/* ...existing code... */
.footer-social .social-item i {
    font-size: 24px;
    color: #919191;
    cursor: pointer;
    transition: color 0.3s ease;
}

.footer-social .social-item:hover i {
    color: #007bff;
}

.footer-social .social-item {
    margin: 0 10px;
    position: relative;
}

/* ...existing code... */

.about-banner {
    margin-top: 100px;
     
    position: relative;
    overflow: hidden;
}

.about-banner img {
    width: 100%;
 
    object-fit: cover;
}

/* ...existing code... */

/* 辽商责任页面样式 */
.responsibility-section {
    padding: 80px 0;
    background-color: #fff;
    border-bottom: 1px solid #e5e5e5;
}

.responsibility-header {
    text-align: center;
    margin-bottom: 50px;
}

.responsibility-header .main-title {
    font-size: 36px;
    color: rgb(7, 108, 224);
    font-weight: bold;
    margin-bottom: 15px;
}

.responsibility-header .sub-title {
    font-size: 16px;
    color: #666;
}

.responsibility-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.responsibility-left {
    width: 480px;
    height: 319px;
    overflow: hidden;
}

.responsibility-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.responsibility-right {
    width: 680px;
}

.responsibility-grid {
    display: grid;
    grid-template-columns: repeat(2, 320px);
    grid-template-rows: repeat(2, 150px);
    gap: 20px;
}

.responsibility-item {
    background-color: rgb(7, 108, 224);
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.responsibility-item .icon {
    width: 40px;
    height: 40px;
    margin-bottom: 8px;
}

.responsibility-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: bold;
}

.responsibility-item .item-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.responsibility-item .item-content p {
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
}

/* Strategy Section Styles */
.strategy-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.strategy-item {
    max-width: 1200px;
    margin: 0 auto 120px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
}

.strategy-item:last-child {
    margin-bottom: 0;
}

.strategy-item.reverse {
    flex-direction: row-reverse;
}

.strategy-content {
    flex: 0 0 483px;
    width: 483px;
    position: absolute;
    top: 40px;
    z-index: 2;
}

.strategy-item .strategy-content.left {
    left: 0;
}

.strategy-item .strategy-content.right {
    right: 0;
}

.strategy-box {
    width: 483px;
    background: #fff;
    padding:80px 35px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.strategy-title {
    text-align: left;
    margin-bottom: 25px;
}

.strategy-title .en-title {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    margin-bottom: 5px;
    font-family: Arial;
}

.strategy-title .cn-title {
    font-size: 24px;
    color: #333;
    font-weight: bold;
    position: relative;
    padding-bottom: 15px;
}

.strategy-title .cn-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: #1e50a2;
}

.strategy-text {
    color: #666;
    line-height: 1.8;
}

.strategy-text p {
    margin-bottom: 15px;
}

.strategy-text p:last-child {
    margin-bottom: 0;
}

.strategy-image {
    flex: 0 0 870px;
    height: 582px;
    overflow: hidden;
}

.strategy-item .strategy-image.left {
    margin-right: auto;
}

.strategy-item .strategy-image.right {
    margin-left: auto;
}

.strategy-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ...existing code... */

/* 企业文化页面样式 */
.culture-section {
    padding: 80px 0;
    background-color: #fff;
    border-bottom: 1px solid #e5e5e5;
}

.culture-images {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.culture-image {
    width: 1200px;
    height: auto;
}

.culture-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* News Page Styles */
.xinw-news {
    padding: 40px 0;
}

.xinw-container {
    width: 1200px;
    margin: 0 auto;
}

/* Featured News Section */
.xinw-featured {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.xinw-featured-img {
    width: 590px;
    height: 394px;
    overflow: hidden;
}

.xinw-featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.xinw-featured-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.xinw-featured-item {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #e5e5e5;
}

.xinw-featured-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.xinw-featured-header h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
    font-weight: normal;
}

.xinw-date {
    color: #999;
    font-size: 14px;
}

.xinw-desc {
    color: #666;
    line-height: 1.6;
    font-size: 14px;
}

/* News List Section */
.xinw-list-item {
    display: flex;
    gap: 30px;
    padding: 30px 0;
    border-bottom: 1px solid #e5e5e5;
}

.xinw-list-date {
    display: flex;
    flex-direction: column;
    min-width: 100px;
    position: relative;
    padding-right: 20px;
}

.xinw-list-date::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: #e5e5e5;
}

.xinw-year {
    font-size: 20px;
    color: #333;
    margin-bottom: 5px;
}

.xinw-day {
    font-size: 14px;
    color: #999;
}

.xinw-list-content {
    flex: 1;
}

.xinw-list-content h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
    font-weight: normal;
}

.xinw-list-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Gallery Styles */
.tzly-gallery {
    padding: 40px 0;
}

.tzly-container {
    width: 1200px;
    margin: 0 auto;
}

.tzly-row {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.tzly-row:last-child {
    margin-bottom: 0;
}

.tzly-item {
    width: calc((1200px - 90px) / 4);  /* (总宽度 - 间距总和) / 列数 */
    height: 460px;
    overflow: hidden;
}

.tzly-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.tzly-item:hover img {
    transform: scale(1.05);
}

/* Talent Strategy Styles */
.talent-strategy {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.talent-container {
    width: 1200px;
    margin: 0 auto;
}

.talent-section {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

.talent-section:hover {
    transform: translateY(-5px);
}

.talent-section:last-child {
    margin-bottom: 0;
}

.talent-image {
    
    height: 360px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.talent-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.talent-section:hover .talent-image img {
    transform: scale(1.05);
}

.talent-content {
    flex: 1;
    padding-top: 10px;
}

.talent-content h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 18px;
    font-weight: 600;
}

.talent-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: #1e50a2;
    border-radius: 2px;
}

.talent-text h3 {
    font-size: 22px;
    color: #1e50a2;
    margin: 25px 0 15px;
    font-weight: 500;
}

.talent-text h3:first-child {
    margin-top: 0;
}

.talent-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
    letter-spacing: 0.5px;
}

.talent-text p:last-child {
    margin-bottom: 0;
}

/* Jobs Section Styles */
.jobs-section {
    background: #fff;
    padding: 80px 0;
}

.jobs-container {
    width: 1200px;
    margin: 0 auto;
}

.jobs-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.job-item {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

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

.job-item h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
}

.job-info {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.job-info span {
    color: #666;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.job-info i {
    margin-right: 5px;
    color: #1e50a2;
}

.job-desc {
    color: #666;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 25px;
    height: 75px;
    overflow: hidden;
}

.job-apply {
    display: inline-block;
    padding: 8px 25px;
    background: #1e50a2;
    color: #fff;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.job-apply:hover {
    background: #153a7a;
}

/* Contact Section Styles */
.contact-section {
    background: #fafafa;
    padding: 80px 0;
}

.contact-container {
    width: 1200px;
    margin: 0 auto;
}

.rctt-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.rctt-title h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

.rctt-title p {
    font-size: 18px;
    color: #666;
    margin-bottom: 20px;
}

.rctt-line {
    width: 80px;
    height: 3px;
    background: #1e50a2;
    margin: 0 auto;
    position: relative;
}

.rctt-line::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 1px;
    background: #1e50a2;
    left: -50px;
    top: 1px;
}

.rctt-line::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 1px;
    background: #1e50a2;
    right: -50px;
    top: 1px;
}

.contact-form {
    max-width: 1000px;
    margin: 0 auto;
}

.form-row {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.form-group {
    flex: 1;
    display: flex;
    align-items: center;
}

.form-group label {
    width: 70px;
    color: #333;
    font-size: 16px;
}

.form-group input,
.form-group textarea {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #1e50a2;
    outline: none;
}

.form-group.full-width {
    display: flex;
    width: 100%;
}

.form-group textarea {
    height: 150px;
    resize: none;
}

.submit-btn {
    display: block;
    width: 200px;
    margin: 0 auto;
    padding: 12px 0;
    background: #1e50a2;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #153a7a;
    transform: translateY(-2px);
}

/* Article styles */
.article-container {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 40px 0;
}

.article-content {
    width: 1200px;
    margin: 0 auto;
}

.article-title {
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
    color: #333;
    position: relative;
    padding-bottom: 15px;
}

.article-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background-color: #153a7a;
}

.article-text {
    line-height: 1.8;
    color: #333;
}

.article-text p {
    margin-bottom: 20px;
    text-indent: 2em;
}

.article-divider {
    margin: 30px 0;
    height: 1px;
    background-color: #ddd;
    width: 100%;
}

/* 新闻内容页样式 */
.xinwennr1-container {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 40px 0;
}

.xinwennr1-content {
    width: 1200px;
    margin: 0 auto;
}

.xinwennr1-title {
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    color: #333;
    margin-bottom: 20px;
}

.xinwennr1-meta {
    text-align: center;
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}

.xinwennr1-divider {
    height: 1px;
    background-color: #ddd;
    margin: 20px 0 30px;
}

.xinwennr1-text {
    line-height: 1.8;
    color: #333;
}

.xinwennr1-text p {
    margin-bottom: 20px;
    text-indent: 2em;
}