@charset "utf-8";

body {
    margin: 0;
    padding: 0;
    font-family: "微软雅黑";
    font-size: 18px;
    font-weight: 400;
}

a {
    text-decoration: none;
}

ul,
li {
    list-style: none;
}

.divBG {
    background-color: #2d879c;
}

.headBg {
    background-image: url(headBg.png);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: auto 672px;
}

.w1200QL {
    width: 1200px;
    margin: 0 auto;
    position: relative;
}

.luXIan {
    padding-top: 480px;
    margin-bottom: 50px;

}

.luXIan img {
    width: 100%;
}

.w130R {
    width: 130px;
    float: left;
}

.w130L {
    width: calc(100% - 150px);
    float: right;
}

.fc {
    clear: both;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.contentA {
    padding: 0 10px;
    margin-bottom: 50px;
}

.contentA p {
    color: #fff;
    font-size: 20px;
    line-height: 180%;
    margin: 0 0 15px 0;
    padding: 0;
    text-indent: 2em;
    font-weight: normal;
    text-align: justify;
}

.contentA p span {
    font-size: 36px;
}

.picT3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
    margin: 15px 0;
}

.picT3 .picItem .pic {
    background-color: #fff;
    overflow: hidden;
}

.picT3 .picItem .pic img {
    border: 5px solid #5edfeb;
    width: calc(100% - 10px);
    object-fit: cover;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden
}

.picT3 .picItem .pic:hover img {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05)
}


.picT3 .picItem .picTxt {
    text-align: center;
    color: #2affe6;
    padding: 15px 0;
    font-size: 18px;
}

#mapBig {
    display: none;
}

.map {
    cursor: pointer;
    text-align: center;
    margin: 25px 0;
}

.map .mapSmall {
    border: 5px solid #5edfeb;
    width: calc(100% - 10px);
}

/* 弹窗遮罩 */
.map-modal {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.88);
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.map-modal.show {
    display: block;
    opacity: 1;
}

/* 关闭按钮 */
.map-close {
    position: fixed;
    right: 30px;
    top: 20px;
    width: 46px;
    height: 46px;
    line-height: 46px;
    text-align: center;
    font-size: 34px;
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    cursor: pointer;
    z-index: 10000;
    user-select: none;
}

.map-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* 图片容器（拖拽区域） */
.map-drag-wrap {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* 大图 */
.map-big-img {
    transform-origin: center center;
    user-select: none;
    cursor: grab;
}

.map-big-img:active {
    cursor: grabbing;
}

.titPh {
    display: none;
}

.linkA {
    width: 150px;
    height: 160px;
    position: absolute;
    right: -160px;
    bottom: -10px;
    text-align: right;
    display: block;
    cursor: pointer;
}

/* 自适应样式 1200 */
@media (max-width:1200px) {
    .w1200QL {
        width: 100%;
        margin: 0 auto;
    }

    .headBg {
        background-image: url(headBg.png);
        background-position: top center;
        background-repeat: no-repeat;
        background-size: auto 450px;
    }

    .luXIan {
        padding-top: 480px;
        margin-bottom: 50px;
    }

    .linkA {
        display: none;
    }
}

/* 自适应样式 800 */
@media (max-width:800px) {
    .headBg {
        background-image: url(headBg.png);
        background-position: top center;
        background-repeat: no-repeat;
        background-size: auto 230px;
    }

    .luXIan {
        padding-top: 180px;
        margin-bottom: 50px;
    }

    .linkA {
        display: none;
    }

    .w1200QL {
        width: 100%;
        margin: 0 auto;
    }

    .w130R {
        width: 0px;
        float: left;
        display: none;

    }

    .titPh {
        display: block;
        text-align: center;
        font-size: 24px;
        padding: 15px 10px;
        background-color: #116a79;
        color: #fff;
        margin-bottom: 20px;
        border-radius: 5px;
    }

    .w130L {
        width: calc(100% - 0px);
        float: right;
    }

    .picT3 {
        display: grid;
        grid-template-columns: 1fr;
        gap: 15px;
    }
}