/* 重置默认样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    width: 100%;
    min-width: 1480px;
    background-color: #f4f4f4;
}

.AppPage {
    width: 100%;
    min-width: 1480px;
    margin: 0 auto;
}

@font-face {
    font-family: "lsm";
    src: url("../img/font.ttf");
}

.header {
    width: 100%;
    min-width: 1480px;
    height: 600px;
    background-image: url("../img/header.jpeg");
}

.header-logo {
    display: flex;
    width: 100%;
    position: sticky;
    z-index: 1000;
    background-color: #f4f4f4;
    border-bottom: rgba(28, 99, 184, 0.3) 3px solid;
    min-width: 1480px;
}

.logo {
    width: 35%;
    display: flex;
    justify-content: center;
    padding: 30px 0;
}

.logo img {
    width: 300px;
}

.header-content {
    width: 58%;
    justify-content: center;
    text-align: center;
    align-items: center;
    padding: 40px 0;
}

.header-content ul {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 20px 30px;
    list-style: none;
    background-color: rgba(28, 99, 184, 0.7);
    border-radius: 20px;
}

.header-content li {
    font-size: 22px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
    color: white;
}

.header-content li a {
    color: #fff;
    text-decoration: none;
    font-weight: 800;

    &:hover {
        color: #ffd700;
    }
}

.main {
    width: 1300px;
    margin: 0 auto;
    padding-top: 40px;
}

.main-banner {
    width: 100%;
    display: flex;
}

.main-banner-left {
    width: 50%;
    padding: 10px;
    height: 100%;
}

.slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    box-sizing: border-box;
}

.slide img {
    width: 100%;
    display: block;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.3);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 18px;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.2);
}


.main-banner-right {
    width: 50%;
    padding: 30px;
}

.news-list {
    width: 100%;
    margin-top: -20px;
}

.news-list li {
    display: flex;
    justify-content: space-between;
    border-bottom: #999999 1px dashed;
    padding-bottom: 10px;
    padding-top: 10px;
    cursor: pointer;

    &:hover {
        color: #93765c;
    }
}

.news-list li p {
    font-size: 20px;
}

.list-item-day {
    font-size: 14px;
    font-weight: 200;
}

.index-img-mid {
    width: 100%;
}

.index-main {
    display: flex;
    width: 100%;
}

.index-main-left {
    width: 50%;
    padding: 20px 30px;
}

.index-main-right {
    width: 50%;
    padding: 20px 30px;
}

.index-pics {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.index-pics img {
    width: 24%;
    border-radius: 10px;
}

.index-maps {
    width: 100%;
    display: flex;
    height: 800px;
}

.index-map {
    width: 50%;
    height: 100%;
    padding: 10px;
}

.map {
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.index-chart {
    width: 50%;
    padding: 10px;
}

.index-chart1 {
    width: 100%;
    height: 50%;
}

.index-chart2 {
    width: 100%;
    height: 50%;
}

.index-footer {
    padding-top: 60px;
    width: 100%;
    margin-top: 20px;
    height: 200px;
    text-align: center;
    background: linear-gradient(#f4f4f4, rgba(28, 99, 184, 0.2));
}

.index-footer h1 {
    font-family: lsm;
    font-size: 50px;
    font-weight: 400;
}

.index-footer p {
    margin-top: 10px;
    font-weight: 200;
}
