﻿[v-cloak] {
    display: none;
}

.web-container {
    width: var(--web-width);
    margin: 0 auto;
}

.common-module {
    margin-top: 30px;
}

section.module-box {
    padding: 30px 0;
    background-color: #fff;
}

    section.module-box:nth-child(2n+1) {
        background-color: #f2f3f9;
        background-image: -webkit-gradient(linear, left top, right top, from(#f2f3f9), to(#fcfdfe));
        background-image: -webkit-linear-gradient(left, #f2f3f9 0%, #fcfdfe 100%);
        background-image: -moz-linear-gradient(left, #f2f3f9 0%, #fcfdfe 100%);
        background-image: -o-linear-gradient(left, #f2f3f9 0%, #fcfdfe 100%);
        background-image: linear-gradient(90deg, #f2f3f9 0%, #fcfdfe 100%);
    }

.common-title {
    color: #393939;
    font-weight: bold;
    padding-bottom: 20px;
    text-align: center;
    position: relative;
}

    .common-title h2 {
        font-size: 30px;
        line-height: 30px;
        color: var(--web-theme-color);
        position: relative;
        padding-bottom: 10px;
    }

        .common-title h2:after {
            content: '';
            width: 60px;
            position: absolute;
            height: 2px;
            bottom: -5px;
            left: 50%;
            -webkit-transform: translateX(-50%);
            -moz-transform: translateX(-50%);
            -ms-transform: translateX(-50%);
            -o-transform: translateX(-50%);
            transform: translateX(-50%);
            background-color: var(--web-theme-color);
        }

    .common-title.common-title-left {
        text-align: left;
    }

        .common-title.common-title-left h2:after {
            left: 0;
            -webkit-transform: translateX(0);
            -moz-transform: translateX(0);
            -ms-transform: translateX(0);
            -o-transform: translateX(0);
            transform: translateX(0);
        }

.text-more {
    color: #fff;
    font-size: 11px;
    display: inline-block;
    font-weight: bold;
    text-align: center;
    color: var(--web-theme-color);
}

    .text-more:hover {
        opacity: 0.8;
    }

a:hover {
    color: var(--web-theme-color);
}

.ant-btn.ant-btn-primary {
    background-color: var(--web-theme-color);
    border-color: var(--web-theme-color);
}

.wrapper {
    min-height: 100vh;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.lang {
    background: #fbf8f8;
    height: 35px;
    line-height: 35px;
    font-size: 12px;
}

.lang-title {
    padding-left: 38px;
    background: url(https://file-bj.mscps.com/static/pc/Template/10034/image/language.png) left -10px no-repeat;
    margin-right: 5px;
}

.lang-name {
    display: inline-block;
    color: #999;
    background-image: url(https://file-bj.mscps.com/static/pc/Template/10034/image/language.png);
    background-repeat: no-repeat;
}

    .lang-name.on {
        color: #000;
    }

.lang-cn {
    padding-left: 20px;
    background-position: -10px -42px;
    margin-right: 5px;
}

.lang-en {
    padding-left: 20px;
    background-position: -10px -82px;
}

.adv-modal {
    position: fixed;
    top: 69px;
    border: 1px solid #e0e0e0;
    background: #ffffff;
    z-index: 3;
    right: 10px;
    width: 150px;
}

.banner {
    position: relative;
    overflow: hidden;
}

    .banner img {
        max-width: 100%;
        display: block;
        margin: 0 auto;
    }

    .banner .minisite-qrcode {
        padding: 10px;
        position: absolute;
        bottom: -90px;
        right: 0;
        background-color: #fff;
        -webkit-transition: all 0.5s;
        -o-transition: all 0.5s;
        -moz-transition: all 0.5s;
        transition: all 0.5s;
    }

        .banner .minisite-qrcode img {
            width: 100px;
            height: 100px;
        }

        .banner .minisite-qrcode p {
            letter-spacing: 1px;
            margin-bottom: 5px;
            font-size: 12px;
        }

        .banner .minisite-qrcode:hover {
            bottom: 0;
            cursor: pointer;
        }

.nav {
    height: 70px;
    line-height: 70px;
    background: var(--web-nav-color);
    color: var(--web-nav-font-color);
    position: relative;
    z-index: 2;
    -webkit-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
    -webkit-box-shadow: 0 0 18px 0 rgba(0, 0, 0, 0.08);
    box-shadow: 0 0 18px 0 rgba(0, 0, 0, 0.08);
}

    .nav .nav-menu,
    .nav .lang-mobile {
        display: none;
    }

    .nav .logo {
        width: 100px;
        height: 100px;
        border-bottom-left-radius: 50px;
        border-bottom-right-radius: 50px;
        background-color: #fff;
        margin-right: 0.8rem;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        overflow: hidden;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -moz-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -moz-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-shadow: 0px 2px 4px 0px rgba(11, 37, 88, 0.45);
        box-shadow: 0px 2px 4px 0px rgba(11, 37, 88, 0.45);
    }

        .nav .logo img {
            width: 70px;
            height: 70px;
            -o-object-fit: contain;
            object-fit: contain;
        }

    .nav .nav-date-content {
        height: 35px;
        line-height: 35px;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        padding: 0 20px;
        border-radius: 35px;
        font-size: 15px;
        margin-left: 20px;
        background: var(--web-nav-active-color);
        color: var(--web-nav-font-active-color);
    }

        .nav .nav-date-content .days {
            font-size: 20px;
            font-weight: bold;
        }

.nav-item {
    position: relative;
    line-height: 1.2;
    text-align: center;
    z-index: 1;
}

.nav-item-p {
    padding: 0 20px;
    width: 100%;
    font-size: 16px;
    text-align: center;
    height: 70px;
    color: var(--web-nav-font-color);
    overflow: hidden;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 15px;
}

.nav-item.selected .nav-item-p,
.nav-item:hover .nav-item-p {
    background: var(--web-nav-active-color);
    color: var(--web-nav-font-active-color);
}

.nav-item .nav-item-second {
    width: 200%;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1;
    display: none;
    background: var(--web-nav-color);
    -webkit-box-shadow: 0 0 18px 0 rgba(0, 0, 0, 0.08);
    box-shadow: 0 0 18px 0 rgba(0, 0, 0, 0.08);
}

    .nav-item .nav-item-second a {
        display: block;
        text-align: left;
        padding: 10px 15px;
        line-height: 1.2;
        font-size: 15px;
        color: var(--web-nav-font-color);
    }

        .nav-item .nav-item-second a:hover {
            background: var(--web-nav-active-color);
            color: var(--web-nav-font-active-color);
        }

.nav-item:hover .nav-item-second {
    display: block;
}

.countdown-module {
    max-width: 177px;
    background-color: rgba(255, 255, 255, 0.9);
    -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 75, 220, 0.2);
    box-shadow: 0px 0px 15px 0px rgba(0, 75, 220, 0.2);
    border-radius: 20px;
    position: fixed;
    bottom: 40px;
    right: 0;
    z-index: 999;
}

    .countdown-module .countdown-box {
        text-align: center;
        padding: 30px 20px;
    }

    .countdown-module .countdown_item1 {
        font-size: 0.8rem;
        font-weight: bold;
        color: var(--web-theme-color);
        position: relative;
        padding-bottom: 10px;
    }

        .countdown-module .countdown_item1::after {
            position: absolute;
            content: "";
            bottom: 0;
            left: 50%;
            -webkit-transform: translateX(-50%);
            -moz-transform: translateX(-50%);
            -ms-transform: translateX(-50%);
            -o-transform: translateX(-50%);
            transform: translateX(-50%);
            width: 37px;
            height: 2px;
            display: inline-block;
            text-align: center;
            background-color: var(--web-theme-color);
        }

    .countdown-module .countdown_item2 {
        color: var(--web-theme-color);
        font-size: 0.6rem;
        padding: 10px 0;
    }

    .countdown-module .countdown_item3 {
        line-height: 1;
    }

        .countdown-module .countdown_item3 .countdown_num {
            font-size: 1.5rem;
            color: var(--web-theme-color);
            font-weight: bolder;
        }

        .countdown-module .countdown_item3 .countdown_day {
            font-size: 0.52rem;
            color: var(--web-theme-color);
        }

    .countdown-module .countdown_item4 {
        color: #000;
        display: inline-block;
        padding-top: 10px;
        width: 112px;
        height: 112px;
        font-size: 0.45rem;
    }

        .countdown-module .countdown_item4 img {
            width: 100%;
            height: 100%;
        }

.channel-module .channel-item {
    background-color: #ffffff;
    -webkit-box-shadow: 0px 0px 20px 0px rgba(12, 97, 245, 0.33);
    box-shadow: 0px 0px 20px 0px rgba(12, 97, 245, 0.33);
    border-radius: 0px 70px 0px 0px;
    width: -webkit-calc(10% / 4);
    width: -moz-calc(10% / 4);
    width: calc((100% - 90px) / 4);
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 50px 20px 40px 30px;
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

    .channel-module .channel-item:not(:last-child) {
        margin-right: 30px;
    }

    .channel-module .channel-item .icon-box {
        font-size: 60px;
        color: var(--web-theme-color);
    }

        .channel-module .channel-item .icon-box i {
            line-height: 60px;
            font-size: inherit;
        }

            .channel-module .channel-item .icon-box i:before {
                width: auto;
                margin: 0;
            }

        .channel-module .channel-item .icon-box img {
            width: 60px;
            height: 60px;
            -o-object-fit: contain;
            object-fit: contain;
        }

.channel-module .channel-item2 {
    border-radius: 0px 0px 0px 70px;
}

.channel-module .channel-item-title {
    font-size: 20px;
    line-height: 30px;
    color: #000;
    margin-top: 40px;
    font-weight: bold;
    position: relative;
    padding-left: 30px;
    margin-left: -30px;
}

    .channel-module .channel-item-title:before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 12px;
        height: 100%;
        background-color: #fff;
    }

.channel-module .channel-item-btn {
    font-size: 14px;
    color: rgba(1, 1, 1, 0.7);
    margin-top: 30px;
}

.channel-module .channel-item:hover {
    background-color: var(--web-theme-color);
}

    .channel-module .channel-item:hover * {
        color: #fff !important;
    }

.new-module .new-content {
    margin-top: -10px;
}

.new-module .new-item {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    padding: 12px 10px 12px 20px;
    position: relative;
}

    .new-module .new-item:not(:last-child) {
        border-bottom: 1px solid #eee;
    }

    .new-module .new-item:before {
        position: absolute;
        left: 0px;
        top: 20px;
        content: "";
        width: 6px;
        height: 6px;
        background-color: var(--web-theme-color);
    }

    .new-module .new-item:hover * {
        color: var(--web-theme-color);
    }

.new2-module .new-item {
    padding: 15px 15px 10px 35px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: relative;
    top: 0;
    border: 1px solid #f2f2f2;
    background-color: #fff;
    font-family: 'FontAwesome';
}

    .new2-module .new-item:before {
        position: absolute;
        left: 20px;
        top: 23px;
        content: "";
        width: 5px;
        height: 5px;
        background-color: var(--web-theme-color);
    }

    .new2-module .new-item:hover {
        top: -8px;
        -webkit-box-shadow: 0px 4px 10px 0 rgba(31, 67, 155, 0.2);
        box-shadow: 0px 4px 10px 0 rgba(31, 67, 155, 0.2);
    }

/*.date-module .date-content {
    height: 300px;
    width: 100%;
    overflow: auto;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 20px;
    background-color: var(--web-theme-color);
    color: #fff;
}

.new-module + .date-module {
    margin-left: 30px;
}*/

section.date-module {
    padding: 30px 0 50px;
}

    section.date-module .date-content {
        position: relative;
        z-index: 2;
    }

        section.date-module .date-content .date-item {
            width: -webkit-calc(-35%);
            width: -moz-calc(-35%);
            width: calc(25% - 20px);
            position: relative;
            background-color: #fff;
            text-align: center;
            overflow: hidden;
            border-radius: 10px;
            -webkit-box-shadow: 0px 10px 60px 0px rgba(37, 39, 88, 0.05);
            box-shadow: 0px 10px 60px 0px rgba(37, 39, 88, 0.05);
            cursor: pointer;
        }

            section.date-module .date-content .date-item:not(:first-child) {
                margin-left: 20px;
            }

        section.date-module .date-content .date-item-wrap {
            padding-top: 50%;
        }

        section.date-module .date-content .date-item-content {
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            display: -webkit-box;
            display: -webkit-flex;
            display: -moz-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -webkit-flex-direction: column;
            -moz-box-orient: vertical;
            -moz-box-direction: normal;
            -ms-flex-direction: column;
            flex-direction: column;
            -webkit-box-align: center;
            -webkit-align-items: center;
            -moz-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            -webkit-box-pack: center;
            -webkit-justify-content: center;
            -moz-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
        }

        section.date-module .date-content .date-item:hover {
            background: var(--web-theme-color) url(https://file-bj.mscps.com/static/pc/Template/10034/image/bg-line.png) top center repeat-y;
        }

            section.date-module .date-content .date-item:hover * {
                color: #fff !important;
            }

        section.date-module .date-content .date-item p {
            font-size: 14px;
            margin-top: 0.4rem;
            color: #8B8C9C;
            letter-spacing: 0.1em;
        }

        section.date-module .date-content .date-item h3 {
            margin: 0;
            color: #252758;
            font-size: 24px;
            font-weight: bold;
            letter-spacing: -0.04em;
            line-height: 1em;
            position: relative;
            -webkit-transition: all 0.4s ease;
            -o-transition: all 0.4s ease;
            -moz-transition: all 0.4s ease;
            transition: all 0.4s ease;
        }

.merge-box {
    position: relative;
    padding-top: 170px;
    padding-bottom: 30px;
}

    .merge-box:before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 400px;
        background: url(https://file-bj.mscps.com/static/pc/Template/10034/image/jianjie_bg.png) no-repeat center top;
        -o-background-size: 100% 100%;
        background-size: 100% 100%;
    }

    .merge-box:after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 400px;
        top: 0;
        background-color: var(--web-theme-color);
        opacity: 0.6;
        z-index: 2;
    }

    .merge-box .merge-content {
        position: relative;
        z-index: 3;
        background-color: #fff;
        -webkit-box-shadow: 0px 0px 35px 0px rgba(0, 75, 220, 0.14);
        box-shadow: 0px 0px 35px 0px rgba(0, 75, 220, 0.14);
        padding: 30px;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

.carousel-banner-module {
    width: 100%;
    height: 330px;
    overflow: hidden;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: shapeRotate;
    -moz-animation-name: shapeRotate;
    -o-animation-name: shapeRotate;
    animation-name: shapeRotate;
    -webkit-animation-timing-function: linear;
    -moz-animation-timing-function: linear;
    -o-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-duration: 5s;
    -moz-animation-duration: 5s;
    -o-animation-duration: 5s;
    animation-duration: 5s;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-transform-origin: center center;
    -moz-transform-origin: center center;
    -ms-transform-origin: center center;
    -o-transform-origin: center center;
    transform-origin: center center;
}

    .carousel-banner-module .custom-slick-arrow {
        margin-top: -35px !important;
        display: none !important;
    }

    .carousel-banner-module:hover .custom-slick-arrow {
        display: block !important;
    }

    .carousel-banner-module .carousel-banner-item {
        height: 330px;
        display: block;
    }

    .carousel-banner-module img {
        width: 100%;
        height: 100%;
        display: block;
        -o-object-fit: cover;
        object-fit: cover;
        -o-object-position: center top;
        object-position: center top;
    }

.text-module .text-cntitle {
    font-size: 24px;
    font-weight: bold;
    color: #000;
}

.text-module .text-content {
    font-size: 15px;
    color: #000;
    overflow: auto;
    width: 100%;
    height: 265px;
    line-height: 25px;
}

.carousel-banner-module + .text-module {
    margin-left: 30px;
}

.kg-editor-module + .text-module {
    margin-left: 30px;
}

.new2-module .ant-col:nth-child(n+3) .new2-item {
    border-top: 1px solid #ebedf3;
}

.new2-module .new2-item {
    display: block;
    border-radius: 3px;
    padding: 15px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.15s linear;
    -o-transition: all 0.15s linear;
    -moz-transition: all 0.15s linear;
    transition: all 0.15s linear;
    position: relative;
}

    .new2-module .new2-item:before {
        width: 5px;
        height: 5px;
        background-color: #aaa;
        content: '';
        position: absolute;
        left: 0px;
        top: 24px;
    }

    .new2-module .new2-item:hover * {
        color: var(--web-theme-color);
    }

    .new2-module .new2-item:hover:before {
        background-color: var(--web-theme-color);
    }

.ant-carousel .custom-slick-arrow {
    width: 25px;
    line-height: 60px;
    height: 45px;
    background-color: #e4e0e0;
    opacity: 1;
    border-radius: 3px;
    text-align: center;
    margin-top: -45px;
    -webkit-transition: all 0.15s linear;
    -o-transition: all 0.15s linear;
    -moz-transition: all 0.15s linear;
    transition: all 0.15s linear;
    z-index: 9;
}

    .ant-carousel .custom-slick-arrow:hover {
        background-color: #b4afaf;
    }

.ant-carousel .custom-dots li button {
    background: var(--web-theme-color) !important;
    opacity: 0.5;
    -webkit-transition: all 0.15s linear;
    -o-transition: all 0.15s linear;
    -moz-transition: all 0.15s linear;
    transition: all 0.15s linear;
}

    .ant-carousel .custom-dots li button.slick-active {
        opacity: 1;
    }

.guest-module {
    overflow: hidden;
    position: relative;
}

    .guest-module .carousel-guest-module .slick-slider {
        padding-bottom: 30px;
    }

    .guest-module .guest-item img {
        width: 150px;
        height: 200px;
        display: block;
        margin: 0 auto;
        -o-object-fit: cover;
        object-fit: cover;
        -o-object-position: top;
        object-position: top;
        border: 1px solid transparent;
        -webkit-transition: all 0.15s linear;
        -o-transition: all 0.15s linear;
        -moz-transition: all 0.15s linear;
        transition: all 0.15s linear;
    }

        /*.guest-module .guest-item-img {
        display: block;
        width: 80%;
        margin: 0 auto;
        padding-top: 93.33%;
        position: relative;
        border: 1px solid transparent;
        height: 200px;
    }

        .guest-module .guest-item-img img {
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center top;
        }*/

        .guest-module .guest-item img:hover {
            border: 1px solid var(--web-theme-color);
        }

.goods-module .goods-type {
    margin-bottom: 15px;
}

    .goods-module .goods-type a {
        color: #000;
        font-size: 16px;
        padding: 10px;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

        .goods-module .goods-type a.selected {
            color: var(--web-theme-color);
            font-weight: bold;
            position: relative;
        }

            .goods-module .goods-type a.selected:before {
                content: '';
                position: absolute;
                bottom: 0;
                left: 50%;
                margin-left: -13px;
                width: 26px;
                height: 5px;
                border-radius: 40px;
                background-color: var(--web-theme-color);
            }

        .goods-module .goods-type a:not(:last-child) {
            margin-right: 15px;
        }

.goods-module .goods-item {
    overflow: hidden;
}

    .goods-module .goods-item img {
        width: 100%;
        height: 237px;
        display: block;
        -o-object-fit: cover;
        object-fit: cover;
        -webkit-box-shadow: 0px 3px 15px 0 rgba(69, 79, 127, 0.22);
        box-shadow: 0px 3px 15px 0 rgba(69, 79, 127, 0.22);
        -webkit-transition: all 0.15s linear;
        -o-transition: all 0.15s linear;
        -moz-transition: all 0.15s linear;
        transition: all 0.15s linear;
    }

        .goods-module .goods-item img:hover {
            -webkit-transform: scale(1.05);
            -moz-transform: scale(1.05);
            -ms-transform: scale(1.05);
            -o-transform: scale(1.05);
            transform: scale(1.05);
        }

.company-module .carousel-company-module .slick-slider {
    padding-bottom: 30px;
}

.company-module .company-item {
    position: relative;
    background-color: #fff;
    /*width: 16.666%;*/
    width: 100%;
    /*display: block;*/
    display: flex;
    height: 196px;
    padding: 10px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border: 1px solid #dcdcdc;
    border-right: 0;
    overflow: hidden;
    -webkit-transition: all 0.15s linear;
    -o-transition: all 0.15s linear;
    -moz-transition: all 0.15s linear;
    transition: all 0.15s linear;
}

    .company-module .company-item:last-child {
        border-right: 1px solid #dcdcdc;
    }

    .company-module .company-item img {
        width: 100%;
        height: 100%;
        -o-object-fit: contain;
        object-fit: contain;
        -o-object-position: center center;
        object-position: center center;
    }

.company-module .company-item-info {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.68);
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

    .company-module .company-item-info .company-item-title {
        height: 100%;
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: center;
    }

    .company-module .company-item-info p {
        padding: 5px;
    }

.company-module .company-item-btn {
    font-size: 12px;
    display: inline-block;
    padding: 4px 10px;
    background-color: var(--web-theme-color);
    border-radius: 22px;
    color: #fff;
}

.company-module .company-item:hover .company-item-info {
    opacity: 1;
}

.photos-module .carousel-photos-module .slick-slider {
    padding-bottom: 30px;
}

.photos-module .photos-item {
    overflow: hidden;
    -webkit-box-shadow: 0px 0px 8px 0px rgba(0, 75, 220, 0.1);
    box-shadow: 0px 0px 8px 0px rgba(0, 75, 220, 0.1);
    background-color: #fff;
}

.photos-module .photos-item-content {
    padding: 20px;
}

.photos-module .photos-item img {
    width: 100%;
    height: 216px;
    display: block;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-box-shadow: 0px 3px 15px 0 rgba(69, 79, 127, 0.22);
    box-shadow: 0px 3px 15px 0 rgba(69, 79, 127, 0.22);
    -webkit-transition: all 0.15s linear;
    -o-transition: all 0.15s linear;
    -moz-transition: all 0.15s linear;
    transition: all 0.15s linear;
}

    .photos-module .photos-item img:hover {
        -webkit-transform: scale(1.05);
        -moz-transform: scale(1.05);
        -ms-transform: scale(1.05);
        -o-transform: scale(1.05);
        transform: scale(1.05);
    }

.friend-module .carousel-friend-module .slick-slider {
    padding-bottom: 30px;
}

.friend-module .friend-item {
    /*width: -webkit-calc(12%);
    width: -moz-calc(12%);
    width: calc(20% - 8px);*/
    width: 100%;
    display: block;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin-right: 10px;
}

    .friend-module .friend-item:last-child {
        margin-right: 0;
    }

    .friend-module .friend-item img {
        border-radius: 5px;
        border: 1px solid #dcdcdc;
        width: 100%;
        height: 65px;
        padding: 5px 14px;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        -o-object-fit: contain;
        object-fit: contain;
        -o-object-position: center center;
        object-position: center center;
        -webkit-transition: all 0.15s linear;
        -o-transition: all 0.15s linear;
        -moz-transition: all 0.15s linear;
        transition: all 0.15s linear;
        background-color: #fff;
    }

        .friend-module .friend-item img:hover {
            border: 1px solid var(--web-theme-color);
        }

.call-module {
    background-color: var(--web-theme-color);
    padding: 30px;
}

    .call-module .common-title h2 {
        color: #fff;
    }

        .call-module .common-title h2:after {
            background-color: #fff;
        }

.sponsor-list .sponsor-title {
    font-size: 0.7rem;
    font-weight: normal;
    margin: 0.7rem 0 1.2rem;
    text-align: left;
    position: relative;
}

    .sponsor-list .sponsor-title:after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -10px;
        height: 3px;
        width: 25px;
        background: var(--web-theme-color);
        border-radius: 3px;
    }

.sponsor-list .sponsor-image {
    padding-top: 50%;
    position: relative;
    display: block;
    border: 1px solid #dcdcdc;
    transition: all 0.15s linear;
    border-radius: 5px;
    overflow: hidden;
}

    .sponsor-list .sponsor-image img {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        padding: 20px;
        box-sizing: border-box;
        object-fit: contain;
        object-position: center center;
        background-color: #FFF;
    }

    .sponsor-list .sponsor-image:hover {
        border-color: var(--web-theme-color);
    }

.footer {
    padding: 15px;
    background-color: #27282d;
    font-size: 13px;
}

    .footer a {
        color: #fff;
    }

.dialog-info .ant-modal-body {
    padding-top: 40px;
}

.dialog-info .ant-modal-close-x {
    line-height: 45px;
}

.ant-breadcrumb {
    color: #384352;
}

    .ant-breadcrumb * {
        color: inherit !important;
    }

.sub-header {
    padding-bottom: 15px;
    border-bottom: 2px solid var(--web-theme-color);
}

    .sub-header .common-title h2 {
        padding-bottom: 0;
        margin-bottom: 0;
    }

        .sub-header .common-title h2::after {
            display: none;
        }

.sub-common-module {
    margin-top: 20px;
}

@media screen and (max-width: 1260px) {
    body {
        min-width: 1100px;
    }

    .web-container {
        width: 1100px;
    }

    .nav-item-p {
        padding: 0 15px;
    }

    .carousel-banner-module {
        height: 300px;
    }

        .carousel-banner-module .carousel-banner-item {
            height: 300px;
        }

    .text-module .text-content {
        height: 230px;
    }

    .goods-module .goods-item img {
        height: 216px;
    }

    .company-module .company-item {
        height: 174px;
    }

    .photos-module .photos-item .relative img {
        height: 187px;
    }
}

@media screen and (max-width: 768px) {
    body {
        min-width: auto;
    }

    .fs12 {
        font-size: 0.55rem;
    }

    .fs14 {
        font-size: 0.6rem;
    }

    .fs16 {
        font-size: 0.65rem;
    }

    .lang {
        display: none;
    }

    .common-title {
        padding-bottom: 0.5rem;
    }

        .common-title h2 {
            font-size: 0.8rem;
            line-height: 1;
        }

    .common-title-en {
        font-size: 0.5rem;
        margin-top: 0.2rem;
        letter-spacing: 0.2rem;
    }

    .common-title.common-title-left {
        text-align: center;
    }

        .common-title.common-title-left h2:after {
            left: 50%;
            -webkit-transform: translateX(-50%);
            -moz-transform: translateX(-50%);
            -ms-transform: translateX(-50%);
            -o-transform: translateX(-50%);
            transform: translateX(-50%);
        }

    section.module-box {
        padding: 1.2rem 0 0.8rem;
    }

    body {
        font-size: 0.6rem;
    }

    .wrapper {
        padding-top: 1.8rem;
    }

    .body-view {
        padding-bottom: 2rem;
    }

    .web-container {
        width: 100%;
        padding: 0 15px;
    }

    .common-module {
        margin-top: 0.8rem;
    }

    .nav-wrapper {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
        -moz-box-orient: horizontal;
        -moz-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }

    .nav {
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 1.8rem;
        line-height: 1.8rem;
        z-index: 9;
        font-size: 0.55rem;
    }

        .nav .nav-menu {
            color: var(--web-nav-font-color);
            display: block;
            position: absolute;
            right: 0;
            padding: 0.5rem;
            font-size: 0.8rem;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
        }

        .nav .logo {
            width: 1.8rem;
            height: 2.3rem;
            border-bottom-left-radius: 1.8rem;
            border-bottom-right-radius: 1.8rem;
        }

            .nav .logo img {
                width: 1.2rem;
            }

        .nav .nav-date-content {
            font-size: 12px;
            height: 30px;
            line-height: 30px;
        }

            .nav .nav-date-content .days {
                font-size: 14px;
            }

        .nav .lang-mobile {
            display: block;
        }

            .nav .lang-mobile .ant-divider {
                margin: 0;
            }

            .nav .lang-mobile a {
                padding: 0.15rem;
            }

                .nav .lang-mobile a.selected {
                    background: var(--web-nav-active-color);
                }

            .nav .lang-mobile * {
                color: #fff;
            }

        .nav .nav-list {
            display: none;
            position: absolute;
            right: 0;
            top: 1.8rem;
            width: 8rem;
            z-index: 1;
            max-height: 70vh;
            overflow: auto;
            background: var(--web-nav-color);
        }

            .nav .nav-list .nav-item-p {
                line-height: 1.2;
                padding: 0.5rem;
                text-align: left;
                font-size: 0.6rem;
                height: auto;
            }

            .nav .nav-list .nav-item-second {
                position: static;
                width: 100%;
                font-size: 0.5rem;
                display: block;
                background: var(--web-nav-active-color);
            }

                .nav .nav-list .nav-item-second a {
                    text-align: left;
                    position: relative;
                    padding: 0.3rem 0.3rem 0.3rem 1rem;
                }

                    .nav .nav-list .nav-item-second a:before {
                        content: ' - ';
                        position: absolute;
                        left: 0.5rem;
                        top: 0.25rem;
                    }

    .countdown-module {
        max-width: 100%;
        text-align: center;
        margin-top: 1.2rem;
        position: static;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

        .countdown-module .countdown-box {
            padding: 0;
            display: -webkit-box;
            display: -webkit-flex;
            display: -moz-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -webkit-align-items: center;
            -moz-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            line-height: 1;
            -webkit-box-pack: center;
            -webkit-justify-content: center;
            -moz-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
        }

        .countdown-module .countdown_item1 {
            display: none;
        }

        .countdown-module .countdown_item2 {
            padding: 0;
            font-size: 0.8rem;
            margin-right: 0.2rem;
            font-weight: bold;
        }

        .countdown-module .countdown_item4 {
            display: none;
        }

    .channel-module {
        margin-top: 1.2rem;
    }

        .channel-module .channel-list {
            -webkit-flex-wrap: wrap;
            -ms-flex-wrap: wrap;
            flex-wrap: wrap;
            margin-top: -0.5rem;
        }

        .channel-module .channel-item {
            width: -webkit-calc(49.75%);
            width: -moz-calc(49.75%);
            width: calc(50% - 0.25rem);
            padding: 1.2rem 0.5rem 0.5rem 0.5rem;
            border-radius: 0.3rem;
            -webkit-box-flex: initial;
            -webkit-flex: initial;
            -moz-box-flex: initial;
            -ms-flex: initial;
            flex: initial;
            margin-top: 0.5rem;
            -webkit-box-shadow: 0px 0px 5px 0px rgba(12, 97, 245, 0.1);
            box-shadow: 0px 0px 5px 0px rgba(12, 97, 245, 0.1);
        }

            .channel-module .channel-item:nth-child(n) {
                margin-right: 0;
            }

            .channel-module .channel-item:nth-child(2n-1) {
                margin-right: 0.5rem;
            }

        .channel-module .channel-item-icon {
            width: 3rem;
            height: 3rem;
            line-height: 3rem;
        }

        .channel-module .channel-item .icon-box {
            font-size: 1.2rem;
        }

            .channel-module .channel-item .icon-box i {
                line-height: 1.2rem;
            }

            .channel-module .channel-item .icon-box img {
                width: 1.2rem;
                height: 1.2rem;
            }

        .channel-module .channel-item-title {
            font-size: 0.75rem;
            line-height: 1.2;
            margin-top: 0.8rem;
            margin-left: 0;
            padding-left: 0;
        }

            .channel-module .channel-item-title:before {
                display: none;
            }

        .channel-module .channel-item-date {
            font-size: 0.55rem;
            margin-top: 0.4rem;
        }

        .channel-module .channel-item-btn {
            font-size: 0.55rem;
            padding: 0.5rem 0;
            margin-top: 0;
        }

    .kg-editor-box {
        display: block;
    }

    .new-date-box {
        display: block;
    }

    /*.new-module,
    .date-module {
        -webkit-box-flex: initial;
        -webkit-flex: initial;
        -moz-box-flex: initial;
        -ms-flex: initial;
        flex: initial;
        width: 100%;
    }*/
    .new-module {
        -webkit-box-flex: initial;
        -webkit-flex: initial;
        -moz-box-flex: initial;
        -ms-flex: initial;
        flex: initial;
        width: 100%;
    }

    /*.date-module {
        margin-left: 0 !important;
        margin-top: 1.2rem;
    }

        .date-module .date-content {
            height: auto;
        }*/

    section.date-module .date-content {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

        section.date-module .date-content .date-item {
            width: -webkit-calc(49.75%);
            width: -moz-calc(49.75%);
            width: calc(50% - 0.25rem);
            -webkit-box-flex: initial;
            -webkit-flex: initial;
            -moz-box-flex: initial;
            -ms-flex: initial;
            flex: initial;
            margin-top: 0.8rem;
        }

            section.date-module .date-content .date-item:nth-child(n) {
                margin-left: 0;
            }

            section.date-module .date-content .date-item:nth-child(2n) {
                margin-left: 0.5rem;
            }

            section.date-module .date-content .date-item p {
                font-size: 0.55rem;
                line-height: 1.2rem;
            }

            section.date-module .date-content .date-item h3 {
                font-size: 0.7rem;
                margin-top: 0.8rem;
            }

    .merge-box {
        padding-top: 2rem;
        padding-bottom: 0;
    }

        .merge-box:after,
        .merge-box:before {
            height: 10rem;
        }

        .merge-box .merge-content {
            display: block;
            padding: 0.5rem;
            margin: 0 15px;
            width: -webkit-calc(70%);
            width: -moz-calc(70%);
            width: calc(100% - 30px);
        }

    .carousel-banner-module {
        -webkit-box-flex: initial;
        -webkit-flex: initial;
        -moz-box-flex: initial;
        -ms-flex: initial;
        flex: initial;
        width: 100%;
        height: 8.37rem;
        -webkit-animation-name: none;
        -moz-animation-name: none;
        -o-animation-name: none;
        animation-name: none;
    }

        .carousel-banner-module .carousel-banner-item {
            height: 8.37rem;
        }

    .text-module {
        margin-top: 1.2rem;
        -webkit-box-flex: initial;
        -webkit-flex: initial;
        -moz-box-flex: initial;
        -ms-flex: initial;
        flex: initial;
        width: 100%;
        margin-left: 0 !important;
    }

        .text-module .text-content {
            height: auto;
        }

    .new2-module .ant-col:nth-child(n):not(:first-child) .new2-item {
        border-top: 1px solid #ebedf3;
    }

    .new2-module .new2-item {
        padding: 0.5rem 0.5rem 0 0.5rem;
    }

        .new2-module .new2-item:before {
            width: 0.2rem;
            height: 0.2rem;
            top: 0.8rem;
        }

    .goods-module .goods-item img {
        height: 4.35rem;
    }

    .company-module .carousel-company-module .slick-slider {
        padding-bottom: 1.5rem;
    }

    .company-module .company-list {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .company-module .company-item {
        /*width: 33.33%;*/
        width: 100%;
        height: 4.92rem;
        padding: 0.4rem;
    }

        .company-module .company-item:nth-child(n) {
            border: 1px solid #dcdcdc;
        }

        .company-module .company-item:nth-child(3n+2),
        .company-module .company-item:nth-child(3n+3) {
            border-left: 0;
        }

        .company-module .company-item:nth-child(n+4) {
            border-top: 0;
        }

    .company-module .company-item-btn {
        font-size: 0.5rem;
        padding: 0.15rem 0.4rem;
        border-radius: 0.8rem;
    }

    .photos-module {
        padding: 0;
    }

        .photos-module .photos-item-content {
            padding: 0.5rem;
        }

        .photos-module .photos-item .relative img {
            height: 4.2rem;
        }

    .friend-module .carousel-friend-module .slick-slider {
        padding-bottom: 1.2rem;
    }

    .friend-module .friend-list {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .friend-module .friend-item {
        /*width: -webkit-calc(49.75%);
        width: -moz-calc(49.75%);
        width: calc(50% - 0.25rem);*/
        width: 100%;
    }

        .friend-module .friend-item:nth-child(n) {
            margin-right: 0.5rem;
        }

        .friend-module .friend-item:nth-child(2n) {
            margin-right: 0;
        }

        .friend-module .friend-item img {
            height: 65px;
            padding: 0.2rem 0.5rem;
        }

    .call-module {
        padding: 0;
    }

        .call-module .web-container {
            padding: 0.8rem 0.5rem;
        }

        .call-module .common-title-left h2:after {
            left: 0;
            -webkit-transform: translateX(0);
            -moz-transform: translateX(0);
            -ms-transform: translateX(0);
            -o-transform: translateX(0);
            transform: translateX(0);
        }

    .ant-breadcrumb {
        font-size: 0.6rem;
    }

    .sub-header {
        margin-top: 1.5rem;
        padding-top: 1rem;
    }

    .bread {
        -webkit-box-pack: start;
        -webkit-justify-content: flex-start;
        -moz-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        position: absolute;
        left: 15px;
        top: -0.5rem;
    }

    .sub-common-module {
        margin-top: 0.5rem;
    }
}


@-webkit-keyframes shapeRotate {
    0%, 100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }

    20%, 80% {
        -webkit-transform: translateY(7px);
        transform: translateY(7px);
    }

    60% {
        -webkit-transform: translateY(15px);
        transform: translateY(15px);
    }
}

@-moz-keyframes shapeRotate {
    0%, 100% {
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        transform: translateY(0px);
    }

    20%, 80% {
        -webkit-transform: translateY(7px);
        -moz-transform: translateY(7px);
        transform: translateY(7px);
    }

    60% {
        -webkit-transform: translateY(15px);
        -moz-transform: translateY(15px);
        transform: translateY(15px);
    }
}

@-o-keyframes shapeRotate {
    0%, 100% {
        -webkit-transform: translateY(0px);
        -o-transform: translateY(0px);
        transform: translateY(0px);
    }

    20%, 80% {
        -webkit-transform: translateY(7px);
        -o-transform: translateY(7px);
        transform: translateY(7px);
    }

    60% {
        -webkit-transform: translateY(15px);
        -o-transform: translateY(15px);
        transform: translateY(15px);
    }
}

@keyframes shapeRotate {
    0%, 100% {
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -o-transform: translateY(0px);
        transform: translateY(0px);
    }

    20%, 80% {
        -webkit-transform: translateY(7px);
        -moz-transform: translateY(7px);
        -o-transform: translateY(7px);
        transform: translateY(7px);
    }

    60% {
        -webkit-transform: translateY(15px);
        -moz-transform: translateY(15px);
        -o-transform: translateY(15px);
        transform: translateY(15px);
    }
}
