@charset "utf-8";
/* CSS Document */


        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        .slider-container {
            position: relative;
            width: 100%;
            max-height: 400px;
            min-height: 300px;
            overflow: hidden;
        }
        .slider {
            position: relative;
            width: 100%;
            height: 100%;
            z-index: -1;
        }
        .slider img {
            width: 100%;
            height: 100%;
			min-height:300px;
            object-fit: cover;
            position: absolute;
            opacity: 0;
            transition: opacity 0.8s ease;
        }
        .slider img.active {
            opacity: 1;
        }
        .article-panel {
            position: absolute;
            top:0;
            right: 0;
            width: 15%;
            /*height: 100%;*/
            z-index: 10;
            padding: 15px 20px;
            display: flex;
            flex-direction: column;
			background-color: rgba(255, 255, 255, 0.5);
        }
        .article-panel h2 {
            margin-bottom: 10px;
            font-size: clamp(16px, 2vw, 24px);
            color: #333;
        }
        .article-list {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-evenly;
        }
        .article-item {
            margin: 3px 0;
        }
        .article-item a {
            text-decoration: none;
            color: #333;
            font-size: clamp(12px, 1.5vw, 18px);
            transition: color 0.3s;
            display: block;
            line-height: 1.4;
        }
        .article-item a:hover {
            color: #0066cc;
        }
        .slider-nav {
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            transform: translateY(-50%);
            display: flex;
            justify-content: space-between;
            padding: 0 15px;
            z-index: 5;
        }
        .slider-btn {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(255,255,255,0.7);
            border: none;
            cursor: pointer;
            font-size: 18px;
            color: #333;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        @media (max-width: 768px) {
            .article-panel {
                width: 37%;
                padding: 10px 15px;
            }
        }

        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
        }
        .header {
            background-color: darkred;
            color: white;
            text-align: center;
            padding: 1em 0;
        }
        .tabs {
            display: flex;
            justify-content: space-around;
            background-color: #c9c3cc;
        }
        .tab {
            cursor: pointer;
            padding: 14px 20px;
            transition: background-color 0.3s;
			font-size:24px;
        }
        .tab.active {
            background-color: papayawhip;
			    font-size: 24px;
        }
        .content {
            display: none;
            padding: 20px;

        }
        .content.active {
            display: block;
        }
        .grid-item {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        @media (max-width: 768px) {
            .grid-item {
                grid-template-columns: 1fr;
            }
        }
        .item {
            border: 1px solid #ccc;
            padding: 10px;
            cursor: pointer;
        }
        .item img {
            max-width: 340px;
			width: 267px;
            height: 190px;
			object-fit: cover;
        }
		.tab-img{
    width: 100%!important;
    min-width: 267px!important;
    max-width: 340px!important;
    height: 190px!important;
		}
		.h3-title{ 
		padding-top: 24px;
		text-align:center;
		}
		.p-jianjie{
		text-indent:2em;
		padding-top:14px;		
		}
