@CHARSET "UTF-8";
* {
    margin:0;
    padding:0;
}
body {
    font-family: Georgia,Times New Roman,Times,Songti SC,serif;
    background-color:#E9FAFF;
}
ul {
    list-style-type:none;
}

a {
    text-decoration:none; 
	display:inline;
}
a:link {
    text-decoration:none;
}
a:visited {
    //color:#2196F3;
}
a:hover {
    background: #149717;
    text-decoration: none;
}
a:active {
    background: #ccc;
    text-decoration: none;
}


@media (min-width: 768px) {

}
header {
    max-width:1280px;
    height:140px;
    background:#0F7884;
    margin:auto;
	
}


.banner {
    height:100px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.05)"/></svg>');
  background-size: cover;
}
.banner p {
    font-size:70px;
    color:#ffffff;
    padding-left:25px;
}

#content {
    max-width:1280px;
    /*min-height:1200px;*/
    margin:auto;
    padding:10px 0;
    display:flex;  
}
video {
    padding:20px;
    height:600px;
}
.cleft {
    width:75%;
    border:1px solid #ccc;
    margin-right:10px;
    display:flex;
    flex-wrap:wrap;
    gap: 20px;
    justify-content: space-around;
    min-height:600px;
    padding: 15px;
}
.cright {
    width:24%;
    border:1px solid #c0c0c0;
	display:flex;
    flex-direction:column;
}
#footer {
    margin:auto;
    height:100px;
    padding:10px 0;
    clear:both;
    vertical-align:middle;
}
#footer p {
    text-align:center;
    height:40px;
	line-height:40px;
}

/*计数器样式*/
.gradient-text {
	font-size:28px;
	font-family:tabular-nums,SourceCodeProRegular,Menlo,Monaco,Consolas,Courier New,monospace;
	background-image: linear-gradient(90deg,#4ebbaa,#6bc30d);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	-webkit-box-decoration-break: clone;
	box-decoration-break: clone;
	font-style: italic;
}


/* 新增的DD美化样式 */
dl {
    width: 200px;
    border: 1px solid #0f7884;
    border-radius: 8px;
    margin: 0;
    //padding: 15px 20px;
    transition: transform 0.3s ease;
    background: linear-gradient(145deg, #ffffff, #f5f5f5);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow: hidden;
}

dl:hover {
    transform: translateY(-5px);
}

dt {
    //background: linear-gradient(145deg, #1a5e55, #04535b);
    background: linear-gradient(145deg, #04535b, #0F7884);
    color: #fff;
    padding: 12px;
    font-size: 1.1em;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

dd {
    height: auto;
    min-height: 12px;
    line-height: 12px;
    margin: 0;
    padding: 5px 10px;
    transition: background 0.3s ease;
    position: relative;
}

dd:not(:last-child) {
    border-bottom: 1px solid rgba(76, 175, 80, 0.1);
}

dd a {
    display: block;
    color: #2c3e50;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

dd a::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(76, 175, 80, 0.1), 
        transparent);
    transition: 0.5s;
}

dd a:hover {
    background: rgba(76, 175, 80, 0.05);
    transform: translateX(8px);
    color: #1a5e55;
}

dd a:hover::before {
    left: 100%;
}

dd a:active {
    transform: scale(0.98);
}

/* 添加小箭头图标 */
dd a::after {
    content: "➤";
    position: absolute;
    right: 15px;
    opacity: 0;
    color: #4CAF50;
    transition: opacity 0.3s ease;
}

dd a:hover::after {
    opacity: 1;
}

/* 响应式调整 */
@media (max-width: 768px) {
    dl {
        width: 90%;
        margin: 15px auto;
    }
    
    dd a {
        padding: 10px 12px;
    }
}