* {
    margin: 0;
    padding: 0;
}

body {
    background-color: #bbdff8;
    font-size: 14px;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

img {
    vertical-align: top;
}

.w1200 {
    width: 1200px;
    margin: 0 auto;
}

.guide-page {
    position: relative;
    min-width: 1200px;
    height: 100vh;
    min-height: 720px;
    overflow: hidden;
    background: #f8fcff;
}

.guide-top,
.guide-bottom {
    position: absolute;
    left: 50%;
    width: 1920px;
    max-width: none;
    pointer-events: none;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
}

.guide-top {
    top: 0;
    -webkit-animation: guideTopIn 1s ease both;
            animation: guideTopIn 1s ease both;
}

.guide-bottom {
    bottom: 0;
    -webkit-animation: guideBottomIn 1s ease 0.35s both;
            animation: guideBottomIn 1s ease 0.35s both;
}

.guide-main {
    position: relative;
    z-index: 2;
    width: 820px;
    margin: 0 auto;
    padding-top: 30vh;
    text-align: center;
}

.guide-title {
    display: block;
    width: 560px;
    height: auto;
    margin: 0 auto 50px;
    opacity: 1;
    -webkit-animation: guideTitleIn 0.9s cubic-bezier(.2,.8,.2,1) 0.25s backwards;
            animation: guideTitleIn 0.9s cubic-bezier(.2,.8,.2,1) 0.25s backwards;
}

.guide-city-list {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
            justify-content: center;
    -webkit-box-align: center;
            align-items: center;
    width: 820px;
    margin: 0 auto;
    gap: 25px;
}

.guide-city-list a {
    display: block;
    min-width: 64px;
    height: 36px;
    line-height: 34px;
    box-sizing: border-box;
    text-align: center;
    color: #0069b7;
    font-size: 21px;
    font-family: "SimSun", "宋体", serif;
    font-weight: bold;
    letter-spacing: 0;
    border: 1px solid #a7d3f1;
    border-radius: 8px;
    background: -webkit-linear-gradient(top, #d8efff 0%, #a8d6f3 100%);
    background: linear-gradient(180deg, #d8efff 0%, #a8d6f3 100%);
    box-shadow: 0 2px 5px rgba(0, 105, 183, 0.18), inset 0 1px 0 rgba(255,255,255,0.75);
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-animation: guideBtnIn 0.55s ease backwards;
            animation: guideBtnIn 0.55s ease backwards;
    -webkit-transition: color 0.25s ease, box-shadow 0.25s ease, -webkit-transform 0.25s ease;
    transition: color 0.25s ease, box-shadow 0.25s ease, -webkit-transform 0.25s ease;
    transition: transform 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
    transition: transform 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, -webkit-transform 0.25s ease;
}

.guide-city-list a:nth-child(1) { -webkit-animation-delay: 0.65s; animation-delay: 0.65s; }
.guide-city-list a:nth-child(2) { -webkit-animation-delay: 0.72s; animation-delay: 0.72s; }
.guide-city-list a:nth-child(3) { -webkit-animation-delay: 0.79s; animation-delay: 0.79s; }
.guide-city-list a:nth-child(4) { -webkit-animation-delay: 0.86s; animation-delay: 0.86s; }
.guide-city-list a:nth-child(5) { -webkit-animation-delay: 0.93s; animation-delay: 0.93s; }
.guide-city-list a:nth-child(6) { -webkit-animation-delay: 1s; animation-delay: 1s; }
.guide-city-list a:nth-child(7) { -webkit-animation-delay: 1.07s; animation-delay: 1.07s; }
.guide-city-list a:nth-child(8) { -webkit-animation-delay: 1.14s; animation-delay: 1.14s; }
.guide-city-list a:nth-child(9) { -webkit-animation-delay: 1.21s; animation-delay: 1.21s; }
.guide-city-list a:nth-child(10) { -webkit-animation-delay: 1.28s; animation-delay: 1.28s; }

.guide-city-list a:hover {
    color: #008aa8;
    -webkit-transform: translateY(-3px);
            transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 105, 183, 0.22), inset 0 1px 0 rgba(255,255,255,0.85);
}

@-webkit-keyframes guideTopIn {
    from {
        opacity: 0;
        -webkit-transform: translate(-50%, -40px);
                transform: translate(-50%, -40px);
    }
    to {
        opacity: 1;
        -webkit-transform: translate(-50%, 0);
                transform: translate(-50%, 0);
    }
}

@keyframes guideTopIn {
    from {
        opacity: 0;
        -webkit-transform: translate(-50%, -40px);
                transform: translate(-50%, -40px);
    }
    to {
        opacity: 1;
        -webkit-transform: translate(-50%, 0);
                transform: translate(-50%, 0);
    }
}

@-webkit-keyframes guideBottomIn {
    from {
        opacity: 0;
        -webkit-transform: translate(-50%, 50px);
                transform: translate(-50%, 50px);
    }
    to {
        opacity: 1;
        -webkit-transform: translate(-50%, 0);
                transform: translate(-50%, 0);
    }
}

@keyframes guideBottomIn {
    from {
        opacity: 0;
        -webkit-transform: translate(-50%, 50px);
                transform: translate(-50%, 50px);
    }
    to {
        opacity: 1;
        -webkit-transform: translate(-50%, 0);
                transform: translate(-50%, 0);
    }
}

@-webkit-keyframes guideTitleIn {
    from {
        opacity: 0;
        -webkit-transform: translateY(22px) scale(0.96);
                transform: translateY(22px) scale(0.96);
        -webkit-filter: blur(6px);
                filter: blur(6px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0) scale(1);
                transform: translateY(0) scale(1);
        -webkit-filter: blur(0);
                filter: blur(0);
    }
}

@keyframes guideTitleIn {
    from {
        opacity: 0;
        -webkit-transform: translateY(22px) scale(0.96);
                transform: translateY(22px) scale(0.96);
        -webkit-filter: blur(6px);
                filter: blur(6px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0) scale(1);
                transform: translateY(0) scale(1);
        -webkit-filter: blur(0);
                filter: blur(0);
    }
}

@-webkit-keyframes guideBtnIn {
    from {
        opacity: 0;
        -webkit-transform: translateY(16px);
                transform: translateY(16px);
    }
}

@keyframes guideBtnIn {
    from {
        opacity: 0;
        -webkit-transform: translateY(16px);
                transform: translateY(16px);
    }
}

#pingtan {
    background: url(../imgs/pingtan.jpg) no-repeat top center;
    height: 988px;
}

#fuzhou {
    background: url(../imgs/fuzhou.jpg) no-repeat top center;
    height: 988px;
}

#xiamen {
    background: url(../imgs/xiamen.jpg) no-repeat top center;
    height: 988px;
}

#zhangzhou {
    background: url(../imgs/zhangzhou.jpg) no-repeat top center;
    height: 988px;
}

#quanzhou {
    background: url(../imgs/quanzhou.jpg) no-repeat top center;
    height: 988px;
}

#sanming {
    background: url(../imgs/sanming.jpg) no-repeat top center;
    height: 988px;
}

#putian {
    background: url(../imgs/putian.jpg) no-repeat top center;
    height: 988px;
}

#nanping {
    background: url(../imgs/nanping.jpg) no-repeat top center;
    height: 988px;
}

#longyan {
    background: url(../imgs/longyan.jpg) no-repeat top center;
    height: 988px;
}

#ningde {
    background: url(../imgs/ningde.jpg) no-repeat top center;
    height: 988px;
}

.intro {
    background: url(../imgs/b1.jpg) no-repeat center;
    height: 423px;
}

.intro-bg {
    background: url(../imgs/intro.png) no-repeat center;
    height: 300px;
    box-sizing: border-box;
    padding: 42px 30px 45px 200px;
}

.intro p {
    font-size: 21px;
    color: rgb(0, 88, 134);
    line-height: 2;
    text-indent: 2em;
}

.cfxc {
    background: url(../imgs/b2.jpg) no-repeat center;
    height: 885px;
    box-sizing: border-box;
    padding-top: 95px;
}

.cfxc-box {
    position: relative;
}

.cfxc-box > img {
    display: block;
    margin: 0 auto 60px;
}

.cfxc-list {
    position: relative;
    width: 1200px;
    margin: 0 auto;
}

.cfxc-list .slick-slide {
    width: 280px !important;
    margin-right: calc((1200px - 4 * 280px) / 3);
}

.cfxc-item {
    width: 280px !important;
    height: 415px;
}

.cfxc-item img {
    width: 280px;
    height: 415px;
    -o-object-fit: cover;
       object-fit: cover;
    border: 2px solid #67b8f8;
    border-top-left-radius: 16px;
    border-bottom-right-radius: 16px;
    box-sizing: border-box;
}

.cfxc-list .slick-prev,
.cfxc-list .slick-next {
    position: absolute;
    border: none;
    padding: 0;
    width: 20px;
    height: 44px;
    z-index: 10;
    font-size: 0;
    color: transparent;
    cursor: pointer;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
}

.cfxc-list .slick-prev {
    left: -60px;
    background: url(../imgs/l.png) no-repeat center;
}

.cfxc-list .slick-next {
    right: -60px;
    background: url(../imgs/r.png) no-repeat center;
}

.cfxc-list .slick-prev:before,
.cfxc-list .slick-next:before {
    content: '';
}

.zpzb {
    background: url(../imgs/b3.jpg) no-repeat center top;
    min-height: 1333px;
    box-sizing: border-box;
    padding-top: 60px;
}

.zpzb-box > img {
    display: block;
    margin: 0 auto 40px;
}

.zpzb-list {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
            justify-content: space-between;
}

.vlan-empty {
    width: 100%;
    min-height: 180px;
    box-sizing: border-box;
    padding: 70px 20px;
    text-align: center;
    color: #325c86;
    font-size: 18px;
    background-color: rgba(255, 255, 255, 0.32);
    border: 1px dashed rgba(50, 92, 134, 0.35);
    border-radius: 6px;
}

.zpzb-item {
    width: 380px;
    margin-bottom: 30px;
    -webkit-transition: box-shadow 0.3s ease, -webkit-transform 0.3s ease;
    transition: box-shadow 0.3s ease, -webkit-transform 0.3s ease;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease;
}

.zpzb-item:hover {
    -webkit-transform: translateY(-8px);
            transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 88, 134, 0.2);
}

.zpzb-item a {
    display: block;
    text-decoration: none;
}

.zpzb-cover {
    width: 380px;
    height: 214px;
    overflow: hidden;
}

.zpzb-cover img {
    width: 380px;
    height: 214px;
    -o-object-fit: cover;
       object-fit: cover;
    -webkit-transition: -webkit-transform 0.4s ease;
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

.zpzb-item:hover .zpzb-cover img {
    -webkit-transform: scale(1.06);
            transform: scale(1.06);
}

.zpzb-info {
    width: 380px;
    height: 90px;
    background-color: #c5dbe3;
    box-sizing: border-box;
    padding: 15px 20px;
    text-align: center;
    -webkit-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
}

.zpzb-item:hover .zpzb-info {
    background-color: #b4cdd6;
}

.zpzb-author {
    font-size: 18px;
    color: #325c86;
    font-weight: bold;
    margin-bottom: 8px;
}

.zpzb-title {
    font-size: 16px;
    color: #325c86;
}

.zpzb-page {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
            justify-content: center;
    -webkit-box-align: center;
            align-items: center;
    margin-top: 5px;
}

.zpzb-page a {
    display: inline-block;
    min-width: 36px;
    height: 36px;
    line-height: 36px;
    padding: 0 12px;
    margin: 0 5px;
    text-align: center;
    color: #325c86;
    background-color: #fff;
    border: 1px solid #325c86;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    font-size: 14px;
    box-sizing: border-box;
}

.zpzb-page a:hover {
    background-color: #325c86;
    color: #fff;
}

.zpzb-page a.active {
    background-color: #325c86;
    color: #fff;
    border-color: #325c86;
}

.zpzb-page a.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background-color: #e0e0e0;
    border-color: #ccc;
    color: #999;
}

.page-nums {
    display: -webkit-inline-box;
    display: inline-flex;
    -webkit-box-align: center;
            align-items: center;
}

.footer {
    background-color: #006eb3;
    height: 130px;
    font-size: 18px;
    color: #fff;
    text-align: center;
    line-height: 130px;
}
