/* 重置默认样式 */
* {
    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/header4.jpeg");
    background-size: cover;
    border-bottom: rgba(28, 99, 184, 0.6) 3px solid;
}

.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;
    }
}

.content {
    width: 1200px;
    margin: 20px auto;
    display: flex;
    justify-content: space-between;
}

.content-col {
    width: 32%;
}

.content-item {
    width: 100%;
    padding: 10px;
    background-color: rgba(28, 99, 184, 0.1);
    border-radius: 10px;
    margin-top: 20px;
}

.item-img img {
    width: 100%;
}

.item-title {
    text-align: center;
    font-size: 28px;
    font-weight: 400;
}

.item-price {
    color: brown;
}

.item-btn {
    width: 40%;
    margin-left: 30%;
    height: 45px;
    background-color: rgba(28, 99, 184, 0.7);
    color: white;
    transition: all 0.3s;
    cursor: pointer;
    font-size: 20px;
    border: none;
    margin-top: 20px;
    border-radius: 10px;
}

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

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

.service-map {
    width: 80%;
    margin: 20px auto;
    height: 800px;
    background-color: #999999;
}

#panel {
    background-color: white;
    height: 100%;
    width: 300px;
    position: absolute;
    z-index: 100;
    overflow-y: auto;
    left: 0;
}

#panel .amap-call {
    background-color: #009cf9;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

#panel .amap-lib-driving {
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    overflow: hidden;
}
.service-list{
    margin: 30px auto;
    width: 40%;
    border-radius: 20px;
    background-image: url("../img/service-bg.jpeg");
    background-size: cover;
    height: 1320px;
}


.service-list {
    margin: 20px auto;
    background-color: rgba(255, 255, 255, 0.6);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.service-list-title {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.service-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.service-table th,
.service-table td {
    padding: 12px;
    text-align: center;
    border: 1px solid #ddd;
    font-size: 16px;
}

.service-table th {
    background-color: rgba(249, 249, 249, 0.5);
    font-weight: bold;
    color: #333;
}

.service-table tr:nth-child(even) {
    background-color: rgba(249, 249, 249, 0.3);
}

.service-table tr:hover {
    background-color: #f0f0f0;
}

