/* 基础样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    background: #2286c6;
    text-align: center;
}

#container {
    width: 1520px;
    margin: 0px auto;
    background: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    text-align: left;
	
}

/* 页眉样式 */

.main {
  margin: 0rem 0rem;
  width: 1520px;
  height: 320px;
  background-size: 100% 100%;
  animation: slider 10s linear infinite;
}

@keyframes slider {
  0% {
    background-image: url('biaoqian.jpg');
  }
  50% {
    background-image: url('biaoqian1.jpg');
  }
  100% {
    background-image: url('biaoqian2.jpg');
  }
}

/* 导航样式 */
#globallink {
    background: #1a5a92;
    padding: 0;
}

#globallink ul {
    list-style: none;
    display: flex;
    justify-content: center;
}

#globallink li {
    display: inline-block;
}

#globallink h1 {
	padding: 10px 100px 8px 0px;
	color: white;
	text-decoration: none;
	font-size: 20px;
	transition: all 0.3s;
}

#globallink a {
    display: block;
    padding: 12px 25px;
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s;
}

#globallink a:hover {
    background: #0d3c6c;
}

#globallink li{
	color: #333;
    appearance: none;
    outline: none;
    background: transparent;
    margin-top: auto;
    margin-bottom: auto;
    border: none;
    padding: calc(var(--design-unit)* 2px + 2px) 12px calc(var(--design-unit)* 2px + 2px) 12px;
    color: var(--neutral-foreground-rest);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    width: 100%;
    font-family: inherit;
    flex: 1 1 0%;
    padding-inline-start: 16px;
}
/* 内容区域样式 */
#content {
    display: flex;
    padding: 15px;
    background: #f5f5f5;
}

#left, #middle, #right {
    padding: 10px;
}

#left {
    width: 25%;
}

#middle {
    width: 50%;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
}

#right {
    width: 25%;
}

.box {
    background: white;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.box h3 map {
    color: #1a5a92;
	width: 32%;
    border-bottom: 2px solid #eaeaea;
    padding-bottom: 8px;
    margin-bottom: 15px;
    font-size: 18px;
}

/* 列表样式 */
ul {
    padding-left: 20px;
}

ul li {
    margin-bottom: 8px;
}

/* 特色区域样式 */
.featured {
    position: relative;
    margin-bottom: 20px;
}

.featured img {
    width: 100%;
    border-radius: 5px;
}

.featured h2 {
    position: absolute;
    bottom: 10px;
    left: 10px;
    color: white;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}

/* 图库样式 */
.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.gallery img {
    width: 48%;
	height: 350px;
    margin-bottom: 10px;
    border-radius: 4px;
}

/* 推荐样式 */
.recommend li {
    text-align: center;
    margin-bottom: 15px;
}

.recommend img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 5px;
}

/* 路线列表 */
.route-list li {
    background: url(../images/icon1.gif) no-repeat left center;
    padding-left: 25px;
    margin-bottom: 10px;
}

/* 页脚样式 */
#footer {
    background: #1a5a92;
    color: white;
    text-align: center;
    padding: 15px 0;
    font-size: 14px;
}

/* 清除浮动 */
.clear {
    clear: both;
}

/* 字体样式 */
.font1 {
    font-size: 14px;
    color: #333;
    line-height: 1.8;
    text-indent: 2em;
}

.font2 {
    font-size: 18px;
    font-weight: bold;
    color: #1a5a92;
    margin: 15px 0 10px;
}