*{
	margin: 0;
	padding: 0;
	font-family: 'Microsoft YaHei', sans-serif;
}
body{
	background-color: #ffffff;
	font-size: 14px;
	margin: 0px;
	padding: 0px;
}
a{
	text-decoration: none;
}

ul li{
	list-style: none;
}
.fl{
	float: left;
}
.clear{
	clear: both;
}
.maindiv1200{
	width: 1200px;
	height: 100%;
	margin: 0px auto;
}
.header{
	background: url(headerbg.png) center top no-repeat;
	height: 196px;
	width: 100%;
	min-width: 1200px;
	margin: 0px;
}
.logo{
	background: url(logo.png) bottom no-repeat;
    background-size: 500px 104px;
	height: 117px;
	width: 559px;
	padding-top: 43px;
	float: left;
}
.flogo{
	background: url(flogo.png) top no-repeat;
	height: 58px;
	width: 257px;
	float: left;
	margin-left: 50px;
	margin-top: 78px;
}
.search{
	float: left;
	margin-top: 78px;
	margin-left: 250px;
}
.searchinput{
    width: 229px;
    height: 35px;
    padding: 2px 16px;
    border-radius: 18px;
    background: #FFFFFF;
    box-sizing: border-box;
    outline: none;
    transition: all 0.3s;
    border: 1px solid rgba(0, 0, 0, 0.4);
}
.search input{
    border: none;
    padding: 5px 0px;
    height: 18px;
    width: 180px;
}
.search input:focus{
	border-color: #F04736;
	box-shadow: 0 0 5px rgb(240, 71, 54, 0.5);
}
.search button,.search img{
    border: none;
    background: none;
}
.datetime{
	font-size: 14px;
	color: #3D3D3D;
	height: 30px;
	line-height: 30px;
	text-align: center;
	margin-top: 10px;
}
.mainnav{
	height: 66px;
	background-color: #F04736;
	width: 100%;
	min-width: 1200px;
}
.mainnav ul{
	width: 1200px;
	margin: 0px auto;
}
.mainnav ul li{
	float: left;
	width: 171px;
	line-height: 66px;
	height: 66px;
	text-align: center;
	position: relative;
}
.mainnav ul li:hover,.mainnav ul li ul li:hover{
	background-color: #B42F21;
}
.mainnav ul li a{
	color: #FFFFFF;
	font-size: 20px;
	display: block;
	width: 171px;
	height: 66px;
}
.mainnav ul li a:hover{
	color: #FFFFFF;
}
.mainnav ul li.active{
	background-color: #B42F21;
}
.mainnav ul li ul {
    position: absolute;
    top: 66px;
    left: 0;
    width: 171px;
    padding: 0px;
    margin: 0px;
    background: url(libg.png) top center;
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border-radius: 0 0 4px 4px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.mainnav ul li:hover ul {
	opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.mainnav ul li ul li{
    clear: both;
    margin: 0px;
    width: 171px;
    text-align: center;
    height: 50px;
    line-height: 50px;
    background: url(libg.png) top center;
    transition: background 0.3s ease;
}

.mainnav ul li ul li:hover {
    background: #B42F21;
}
.mainnav ul li ul li a {
    height: 50px;
    font-size: 16px;
    color: #fff;
    transition: color 0.3s ease;
}
/* 轮播图样式 */
        .banner-container {
            position: relative;
            width: 100%;
            min-width: 1200px;
            height: 517px;
            overflow: hidden;
            margin-top: 0px;
        }
        .banner-slider {
            width: 100%;
            height: 100%;
            position: relative;
        }
        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
        }
        .slide.active {
            opacity: 1;
        }
        .slide-content {
            text-align: center;
            max-width: 800px;
            padding: 20px;
            background: rgba(0, 0, 0, 0.5);
            border-radius: 8px;
        }
        .slide-content h2 {
            font-size: 36px;
            margin-bottom: 15px;
            color: #fff;
        }
        .slide-content p {
            font-size: 18px;
            line-height: 1.6;
        }
        .slide-btn {
            display: inline-block;
            margin-top: 20px;
            padding: 12px 30px;
            background: #F04736;
            color: white;
            border-radius: 30px;
            font-size: 16px;
            transition: all 0.3s;
        }
        .slide-btn:hover {
            background: #B42F21;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        .slider-controls {
            position: absolute;
            bottom: 20px;
            left: 0;
            width: 100%;
            display: flex;
            justify-content: center;
            z-index: 10;
        }
        .slider-dots {
            display: flex;
            gap: 10px;
        }
        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s;
        }
        .dot.active {
            background: #F04736;
            transform: scale(1.2);
        }
        .slider-arrows {
            position: absolute;
            top: 50%;
            width: 100%;
			max-width: 1200px;
            display: flex;
            justify-content: space-between;
            padding: 0px;
            transform: translateY(-50%);
            z-index: 10;
        }
        .arrow {
            width: 50px;
            height: 50px;
            background: rgba(0, 0, 0, 0.4);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            cursor: pointer;
            transition: all 0.3s;
        }
.arrow:hover {
    background: #F04736;
}
/* 轮播图样式结束 */
.topnews{
	text-align: center;
	margin-top: 30px;
}
.topnews h1{
	height: 50px;
	line-height: 50px;
}
.topnews h1 a{
	color: #000000;
	font-size: 32px;
}
.topnews h1 a:hover{
	color: #F04736;
}
.topdec{
	font-size: 16px;
	height: 35px;
	line-height: 35px;
	color: #7E7E7E;
}
.flashandtop{
	margin-top: 30px;
}
.flash{
	width: 681px;
	height: 410px;
	float: left;
}
/* 焦点图样式 */
 /* 图片容器 */
        .img-container {
            flex: 1;
            overflow: hidden;
        }

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

        /* 标题样式 - 显示在底部 */
        .caption-container {
            background: rgba(0, 0, 0, 0.7);
            color: #fff;
            padding: 15px 20px;
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 10;
            transition: background 0.3s ease;
        }

        .caption-container h1 {
            font-size: 20px;
            font-weight: 600;
            margin: 0;
            padding: 0;
            text-align: center;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
            letter-spacing: 0.5px;
        }
/* 焦点图样式结束 */
.newstop{
	float: right;
}
.tab-container {
    width: 465px;
    height: 406px;
    overflow: hidden;
}
.tabs {
    display: flex;
    border-bottom: 1px solid #F04736;
}
.tab {
    flex: 1;
	font-size: 20px;
	height: 40px;
	line-height: 40px;
    text-align: center;
    background: #F8F4F0;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #6c757d;
    font-weight: 600;
    position: relative;
}
/* .tab:not(:last-child) {
    border-right: 1px solid #e1e5eb;
}   */
.tab:hover,.tabactive{
    background: #F04736;
    color: #fff;
	border-radius: 10px 10px 0px 0px;
}
.tab-content {
    padding: 5px;
    height: 410px;
}
.content {
    display: none;
    animation: fadeIn 0.5s ease forwards;
}
.content.active {
    display: block;
}
.card {
    background: #fff;
    padding: 20px 5px;
    transition: transform 0.3s ease;
}
.card:not(:last-child) {
     border-bottom: 1px solid #D8D8D8;
}
.card:hover {
    transform: translateY(-3px);
}
.card-title {
    font-size: 16px;
    font-weight: 700;
    color: #3D3D3D;
    margin-bottom: 15px;
}
.card-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #666666;
}
@keyframes fadeIn {
    from {
            opacity: 0;
            transform: translateY(10px);
    }
    to {
            opacity: 1;
            transform: translateY(0);
    }
 }
.ad1{
	margin-top: 40px;
}
.index-cishan{
	margin-top: 40px;
}
.cishantitle{
	height: 70px;
    text-align: center;
}
.projectlist {
	margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}
.project-item {
    flex: 0 0 calc(33.333% - 20px);
    background: #fff;
    border-radius: 10px 10px 0px 0px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    margin-bottom: 20px;
}
.project-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(240, 71, 54, 0.15);
}
.project-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}
.project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.project-item:hover .project-img img {
    transform: scale(1.05);
}
.project-info {
    padding: 20px;
}
.project-info h3 {
    font-size: 20px;
    color: #F04736;
    margin-bottom: 12px;
    font-weight: 600;
    text-align: center;
}
.project-info p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    text-align: justify;
}
.project-link {
    display: inline-block;
    margin-top: 15px;
    color: #F04736;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
}
.project-link:hover {
    color: #B42F21;
    text-decoration: underline;
}
/* 响应式设计 */
@media (max-width: 992px) {
    .project-item {
        flex: 0 0 calc(50% - 15px);
    }
}
@media (max-width: 768px) {
    .project-item {
        flex: 0 0 100%;
    }
    .cishantitle h2 {
        font-size: 28px;
    }
}
/* 红色通条 */
.redbanner{
	width: 100%;
	min-width: 1200px;
	height: 270px;
	margin-top: 20px;
	background: url(redbanner.jpg);
	color: #FFFFFF;
}
.redbanner .left{
	width: 350px;
	padding-left: 80px;
	padding-top: 10px;
    margin-right: 50px;
}
.redbanner .middle{
	width: 360px;
	padding-top: 10px;
}
.redbanner .right{
	width: 350px;
	padding-top: 60px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 30px;
}
        .btn {
            width: 137px;
            height: 48px;
            background-color: #FF6B35;
            color: white;
            border: none;
            border-radius: 20px;
            font-size: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 0 4px 8px rgba(255, 107, 53, 0.3);
        }

        .btn:hover {
            background-color: #e55a2a;
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(255, 107, 53, 0.4);
        }

        .btn:active {
            transform: translateY(0);
            box-shadow: 0 4px 8px rgba(255, 107, 53, 0.3);
        }
.redbanner h1{
	font-size: 16px;
	line-height: 40px;
	margin-top: 10px;
}
.redbanner ul li{
	font-size: 14px;
	line-height: 30px;
}
.redbanner ul li.lastli{
	margin-top: 10px;
}
/* 爱心故事 */
.index-aixin{
	margin-top: 40px;
}
.aixintitle{
	height: 70px;
    text-align: center;
}
.aixinlist{
	width: 1200px;
	margin: 40px auto;
}
.image-gallery {
            width: 1200px;
            display: flex;
}
.left-column {
    width: 568px;
}
.right-column {
    display: flex;
    flex-wrap: wrap;
    width: calc(1200px - 568px);
}
        .image-card {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .image-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
        }

        .left-column .large {
            width: 568px;
            height: 336px;
        }
        .right-column .small{
        	margin-left: 35px;
			width: 280px;
			height: 150px;
        }
		.right-column .image-card:nth-child(3),
		.right-column .image-card:nth-child(4) {
		    margin-top: 30px;
		}

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

        .image-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
            padding: 20px 15px 15px;
            color: white;
        }

        .large .image-overlay {
            padding: 25px 20px 20px;
        }

        .image-title {
            font-weight: 600;
            margin: 0;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.9);
        }

        .large .image-title {
            font-size: 20px;
        }

        .small .image-title {
            font-size: 16px;
        }
.index-xinxi{
	margin-top: 40px;
}
.xinxititle{
	height: 70px;
    text-align: center;
}
.xinxilist{
	width: 1200px;
	margin: 40px auto;
}

        .main-title {
            text-align: center;
            color: #2d3748;
            margin-bottom: 35px;
            font-weight: 700;
            font-size: 32px;
            position: relative;
            padding-bottom: 15px;
        }

        .main-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #4a6cf7, #2b4de0);
            border-radius: 2px;
        }

        .news-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

        .news-section {
            /* background: #f8fafc; */
            border-radius: 10px;
            padding: 0px;
            /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06); */
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .news-section:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }

        .section-header {
            display: flex;
            align-items: center;
			justify-content: space-between;
			background: #F8F4F0;
            margin-bottom: 10px;
            border-bottom: 1px solid #F04736;
        }

        .section-title {
			height: 40px;
			width: 153px;
			text-align: center;
			line-height: 40px;
            font-size: 20px;
			background: #F04736;
            font-weight: 700;
            position: relative;
			color: #fff;
			border-radius: 10px 10px 0px 0px;
        }
        .more-link {
                    color: #7C7C7C;
                    text-decoration: none;
                    font-size: 14px;
                    font-weight: 600;
                    display: flex;
                    align-items: center;
					padding-right: 10px;
                    transition: all 0.3s ease;
        }
        .more-link:hover {
            color: #7C7C7C;
            transform: translateX(3px);
        }
        .more-link i {
            margin-left: 5px;
            transition: transform 0.3s ease;
        }

                .more-link:hover i {
                    transform: translateX(3px);
                }
        .news-list {
            list-style: none;
			padding-left: 20px;
			padding-right: 10px;
        }

        .news-item {
			list-style-type: disc;
            padding: 12px 0;
            border-bottom: 1px dashed #e2e8f0;
            transition: background-color 0.2s ease;
        }

        .news-item:last-child {
            border-bottom: none;
        }

        .news-item:hover {
            background-color: #edf2f7;
        }

        .news-link {
            display: flex;
            justify-content: space-between;
            align-items: center;
            text-decoration: none;
            color: #4a5568;
            font-size: 16px;
            transition: color 0.2s ease;
        }

        .news-link:hover {
            color: #2b6cb0;
        }

        .news-title {
            flex: 1;
            font-weight: 500;
            padding-right: 15px;
        }

        .news-date {
            color: #718096;
            font-size: 14px;
            white-space: nowrap;
        }

        .view-more {
            display: block;
            text-align: center;
            margin-top: 40px;
            font-weight: 600;
            color: #4a6cf7;
            text-decoration: none;
            font-size: 18px;
            transition: color 0.3s ease;
        }

        .view-more:hover {
            color: #2b4de0;
            text-decoration: underline;
        }

        .view-more i {
            margin-left: 8px;
        }

        @media (max-width: 1240px) {
            .container {
                width: 100%;
                max-width: 1200px;
            }
        }

        @media (max-width: 768px) {
            .news-grid {
                grid-template-columns: 1fr;
            }
        }
.footer{
	width: 100%;
	min-width: 1200px;
	height: 462px;
	border-top: 3px #F04736 solid;
	background: url(footerbg.png) bottom center no-repeat;
}
.footernav{
	height: 320px;
}
.copyright{
	color: #333333;
	font-size: 14px;
	width: 650px;
	line-height: 30px;
	margin: 0px auto;
	text-align: center;
}
.copyright a{
	color: #333333;
}
.footer-container {
	margin-top: 20px;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.footer-column {
    margin-bottom: 25px;
}
.footer-title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #DD2020;
    position: relative;
    padding-bottom: 8px;
}


        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #333333;
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .footer-links a:hover {
            color: #e74c3c;
            padding-left: 5px;
        }

        .donation-info {
            color: #333333;
            font-size: 14px;
            line-height: 1.6;
        }

        .donation-info p {
            margin-bottom: 8px;
        }

        .bank-info {
            background: rgba(255, 255, 255, 0.1);
            padding: 12px 15px;
            border-radius: 5px;
            margin-top: 10px;
        }

        .qrcode-column {
            text-align: center;
        }

        .qrcode {
            width: 120px;
            height: 120px;
            background: #fff;
            border-radius: 8px;
            padding: 8px;
            margin-bottom: 10px;
        }

        .qrcode img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .qrcode-text {
            font-size: 14px;
            color: #333333;
            margin-top: 8px;
        }

        @media (max-width: 1200px) {
            .footer-container {
                width: 100%;
            }
        }

        @media (max-width: 992px) {
            .footer-content {
                justify-content: flex-start;
            }

            .footer-column {
                width: 33.333%;
            }
        }

        @media (max-width: 768px) {
            .footer-column {
                width: 50%;
            }
        }

        @media (max-width: 576px) {
            .footer-column {
                width: 100%;
            }
        }
/* 友情链接 */
.frlink-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
}
.frlink-header h1 {
    margin: 0;
}
.frlink-header h1 img {
    height: 67px;
    display: block;
}
.linktabs {
    display: flex;
    background: white;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}
.linktab {
    padding: 10px 50px;
    cursor: pointer;
	font-size: 18px;
    transition: all 0.3s ease;
    color: #333;
    font-weight: 500;
    background: white;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
        .linktab:hover {
            background: #ffeded;
        }

        .linktabactive {
            background: #e74c3c !important;
            color: white !important;
        }

        .tab-linkcontent {
            position: relative;
            overflow: hidden;
            height: 140px;
            margin-top: 20px;
            padding: 15px 0;
        }

        .linkcontent {
            display: none;
        }

        .linkcontent.linkactive {
            display: block;
        }

        .scrolling-wrapper {
            display: flex;
            animation: scrollLeft 30s linear infinite;
            width: max-content;
        }

        .scrolling-wrapper:hover {
            animation-play-state: paused;
        }

        .linkcard {
            flex: 0 0 auto;
            width: 180px;
            height: 90px;
            margin-right: 20px;
            background: white;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease;
        }

        .linkcard:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .linkcard a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 100%;
            text-decoration: none;
        }

        .linkcard img {
            max-width: 80%;
            max-height: 70%;
            object-fit: contain;
        }

        @keyframes scrollLeft {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        .linksection-title {
            text-align: center;
            color: #2c3e50;
            margin-bottom: 30px;
            font-size: 28px;
            position: relative;
        }

        .linksection-title:after {
            content: '';
            display: block;
            width: 60px;
            height: 4px;
            background: #e74c3c;
            margin: 10px auto;
            border-radius: 2px;
        }
