#loading {
    margin-top: 65px;
    display: none;
}
.float-bar {
    background: #fff;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 12px 60px;
    position: fixed;
    box-shadow: 0 -2px 4px 0 rgba(0, 0, 0, 0.1);
    z-index: 99;
    justify-content: flex-start;
}
.float-bar .float-title {
    margin-right: 40px;
    font-size: 20px;
    line-height: 20px;
}
.chn .float-bar .float-title {
    font-size: 13px;
    font-family: "HanHei TC", "PingFang HK", "Helvetica Neue", Helvetica, STHeitiTC-Light, "宋体", SimSun, "华文细黑",
        STXihei, "E+H Sans Light", "Microsoft Yahei", "Arial,sans-serif";
}
.float-bar .float-btn {
    cursor: pointer;
    margin-right: 40px;
}
.float-bar .float-btn .ic {
    margin-right: 10px;
    height: 20px;
    background: url(../images/sprite.svg) no-repeat;
}
.float-bar .float-btn .ic.register {
    width: 18px;
    background-position: -208px -8px;
}
.float-bar .float-btn .ic.call {
    width: 20px;
    background-position: -236px -8px;
}
.float-bar .float-btn .ic.location {
    width: 16px;
    background-position: -266px -8px;
}
.float-bar .float-btn .ic.line {
    height: 22px;
    width: 23px;
    background-position: -291px -6px;
}
.float-bar .float-btn .text {
    font-size: 18px;
    line-height: 20px;
    color: #b5705c;
}
.chn .float-bar .float-btn .text {
    font-size: 12px;
    font-family: "HanHei TC", "PingFang HK", "Helvetica Neue", Helvetica, STHeitiTC-Light, "宋体", SimSun, "华文细黑",
        STXihei, "E+H Sans Light", "Microsoft Yahei", "Arial,sans-serif";
}
.float-bar .float-btn:last-child {
    margin-right: 0;
}

[animate],
.animate,
.animate2,
.play[animate],
.play.animate,
.play.animate2 {
    opacity: 0;
    transform: translate3d(0, 14px, 0);
    will-change: transform, opacity;
    transition: all 0.5s ease-in-out;
}

[animate].scrolled,
.animate.scrolled,
.animate2.scrolled,
.play[animate].scrolled,
.play.animate.scrolled,
.play.animate2.scrolled {
    opacity: 1;
    transform: none;
}

[animate].scrolled.fade-in,
.animate.scrolled.fade-in,
.animate2.scrolled.fade-in,
.play[animate].scrolled.fade-in,
.play.animate.scrolled.fade-in,
.play.animate2.scrolled.fade-in {
    animation: fade-in 0.7s ease-in-out both;
}

[animate].scrolled.fade-in-bottom,
.animate.scrolled.fade-in-bottom,
.animate2.scrolled.fade-in-bottom,
.play[animate].scrolled.fade-in-bottom,
.play.animate.scrolled.fade-in-bottom,
.play.animate2.scrolled.fade-in-bottom {
    animation: fade-in-bottom 0.7s ease-in-out both;
}

[animate].scrolled.slide-left,
.animate.scrolled.slide-left,
.animate2.scrolled.slide-left,
.play[animate].scrolled.slide-left,
.play.animate.scrolled.slide-left,
.play.animate2.scrolled.slide-left {
    animation: slide-in-left 0.7s ease-in-out both;
}

[animate].scrolled.slide-right,
.animate.scrolled.slide-right,
.animate2.scrolled.slide-right,
.play[animate].scrolled.slide-right,
.play.animate.scrolled.slide-right,
.play.animate2.scrolled.slide-right {
    animation: slide-in-right 0.7s ease-in-out both;
}

@media (prefers-reduced-motion: reduce) {
    [animate],
    .animate,
    .animate2,
    .play[animate],
    .play.animate,
    .play.animate2 {
        opacity: 1;
        transform: none;
        transition: none;
        animation: none;
    }
}

.box-fullscreen {
    width: 100%;
    height: 100%;
    position: fixed;
    visibility: hidden;
    z-index: 999;
    background: rgba(0, 0, 0, 0.9);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.box-fullscreen.active {
    opacity: 1;
    visibility: visible;
}
.box-fullscreen .rel-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}
.box-fullscreen .rel-wrapper .close-fullscreen {
    background: url(../images/sprite.svg) no-repeat;
    width: 24px;
    height: 24px;
    background-position: -34px -32px;
    position: absolute;
    right: 30px;
    top: 30px;
    cursor: pointer;
    z-index: 1;
}
.box-fullscreen .wrap-slide-fullscreen {
    visibility: hidden;
    padding: 80px 0;
    transform: scale(0);
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.box-fullscreen .wrap-slide-fullscreen .slick-arrow.slick-prev {
    left: 40px;
}
.box-fullscreen .wrap-slide-fullscreen .slick-arrow.slick-next {
    right: 40px;
}
.box-fullscreen .wrap-slide-fullscreen.active {
    visibility: visible;
    transform: scale(1);
}
.box-fullscreen .wrap-slide-fullscreen .slick-list {
    width: 100%;
    height: 100%;
}
.box-fullscreen .wrap-slide-fullscreen .slick-list .slick-track {
    height: 100%;
}
.box-fullscreen .wrap-slide-fullscreen .slick-next {
    right: 40px;
    background: url(/images/about/milestone/next.svg);
    width: 40px;
    height: 40px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    font-size: 0;
    border: 0;
    position: absolute;
    top: 50%;
    z-index: 1;
    transform: translateY(-15%);
    cursor: pointer;
}
.box-fullscreen .wrap-slide-fullscreen .slick-next::before {
    content: none;
}
.box-fullscreen .wrap-slide-fullscreen .slick-prev {
    left: 40px;
    background: url(/images/about/milestone/prev.svg);
    width: 40px;
    height: 40px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    font-size: 0;
    border: 0;
    position: absolute;
    top: 50%;
    z-index: 1;
    transform: translateY(-15%);
    cursor: pointer;
}
.box-fullscreen .wrap-slide-fullscreen .slick-prev::before {
    content: none;
}
.box-fullscreen .wrap-slide-fullscreen .slick-arrow.slick-disabled {
    opacity: 0.3;
}
.box-fullscreen .wrap-slide-fullscreen .slick-slide {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.box-fullscreen .wrap-slide-fullscreen .slick-slide.slide-center {
    display: block;
    text-align: center;
    position: relative;
}
.box-fullscreen .wrap-slide-fullscreen .slick-slide.slide-center img {
    margin: auto;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    position: absolute;
    display: block;
    width: auto;
    max-height: 100%;
    height: calc(100vw * 0.63384064458371);
    margin: 0 auto;
}
.btn-wic {
    margin-right: 30px;
}
.btn-wic:last-child {
    margin-right: 0;
}
.btn-wic .ic-loc {
    background: url(../images/sprite.svg) no-repeat;
    background-position: -139px -139px;
    width: 18px;
    height: 20px;
    margin-right: 12px;
}
.btn-wic .ic-dl {
    background: url(../images/sprite.svg) no-repeat;
    background-position: -107px -139px;
    width: 18px;
    height: 20px;
    margin-right: 12px;
}
.bg-project-color.fontwhite {
    color: #fff !important;
}
.bg-project-color.fontblack {
    color: #222 !important;
}
.bg-project-color.fontblack .ar-left.ar-right,
.bg-project-color.fontblack .ar-right.ar-right {
    border-left: 1px solid rgba(34, 34, 34, 0.4) !important;
}
.bg-project-color.fontblack .ar-left.ar-left,
.bg-project-color.fontblack .ar-right.ar-left {
    border-right: 1px solid rgba(34, 34, 34, 0.4) !important;
}
.bg-project-color.fontblack .ar-left .ic-ar,
.bg-project-color.fontblack .ar-right .ic-ar {
    background-position: -39px -73px !important;
}
.bg-project-color.fontblack .menu-bar-wrapper .active-line {
    background: #222;
}
.bg-project-color.fontblack .floorplan-tab {
    color: #222 !important;
}
.bg-project-color.fontblack .floorplan-tab .tab.active,
.bg-project-color.fontblack .floorplan-tab .tab:hover {
    border-bottom: 1px solid rgba(34, 34, 34, 0.4) !important;
}
.bg-project-color.fontblack .plus-ic {
    background: url(../images/sprite.svg) no-repeat !important;
    background-position: -39px -92px !important;
    width: 20px;
    height: 20px;
}
.bg-project-color.fontblack .dd-ic {
    background: url(../images/sprite.svg) no-repeat !important;
    background-position: -39px -73px !important;
    width: 18px;
    height: 10px;
}
.bg-project-color.fontblack ~ .text-wrap {
    color: #222 !important;
}
.project-page {
    width: 100%;
    overflow: hidden;
    height: 100%;
    background: #fff;
}
.project-page > [class*="-section"] {
    min-height: 150px;
}
.project-bar-height {
    width: 100%;
    height: 0;
}
.project-bar {
    width: 100%;
    height: 80px;
    padding: 0 60px;
    display: flex;
    align-items: center;
    color: #fff;
    justify-content: space-between;
    z-index: 22;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
}
.project-bar.fixed {
    position: fixed;
    top: 0;
}
.project-bar .project-logo {
    max-width: 120px;
    max-height: 50px;
    display: flex;
    margin-right: 30px;
    align-items: center;
}
.project-bar .project-logo .logo {
    max-width: 120px;
    max-height: 50px;
}
.project-bar .menu-bar-wrapper {
    position: relative;
    font-size: 0;
    max-width: calc(100% - 127px);
    height: 100%;
    display: flex;
    align-items: center;
}
.project-bar .menu-bar-wrapper .ar-left,
.project-bar .menu-bar-wrapper .ar-right {
    height: 60px;
    cursor: pointer;
    width: 25px;
    position: absolute;
}
.project-bar .menu-bar-wrapper .ar-left.ar-left,
.project-bar .menu-bar-wrapper .ar-right.ar-left {
    left: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.4);
}
.project-bar .menu-bar-wrapper .ar-left.ar-left .ic-ar,
.project-bar .menu-bar-wrapper .ar-right.ar-left .ic-ar {
    transform: rotate(90deg);
}
.project-bar .menu-bar-wrapper .ar-left.ar-right,
.project-bar .menu-bar-wrapper .ar-right.ar-right {
    right: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.4);
}
.project-bar .menu-bar-wrapper .ar-left.ar-right .ic-ar,
.project-bar .menu-bar-wrapper .ar-right.ar-right .ic-ar {
    transform: rotate(-90deg);
}
.project-bar .menu-bar-wrapper .ar-left .ic-ar,
.project-bar .menu-bar-wrapper .ar-right .ic-ar {
    background: url(../images/sprite.svg) no-repeat;
    background-position: -9px -50px;
    width: 18px;
    height: 10px;
}
.project-bar .menu-bar-wrapper .track-wrap {
    overflow-x: auto;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    scrollbar-width: none;
}
.project-bar .menu-bar-wrapper .track-wrap::-webkit-scrollbar {
    display: none;
}
.project-bar .menu-bar-wrapper .menu-track {
    padding: 25px 0;
    height: 100%;
    position: relative;
    display: inline-block;
    white-space: nowrap;
}
.project-bar .menu-bar-wrapper .active-line {
    background: #fff;
    height: 3px;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.project-bar .menu-bar-wrapper .menu-item {
    cursor: pointer;
    font-size: 18px;
    display: inline-block;
    line-height: 30px;
    padding-right: 30px;
}
.project-bar .menu-bar-wrapper .menu-item:last-child {
    padding-right: 0;
}
.project-bar .menu-bar-dropdown {
    padding-top: 10px;
    padding-bottom: 10px;
    align-items: center;
    cursor: pointer;
    position: relative;
    width: 100%;
}
.project-bar .menu-bar-dropdown .dd-title {
    font-size: 16px;
    line-height: 16px;
    margin-right: 15px;
    margin-left: auto;
}
.chn .project-bar .menu-bar-dropdown .dd-title {
    font-size: 11px;
    font-family: "HanHei TC", "PingFang HK", "Helvetica Neue", Helvetica, STHeitiTC-Light, "宋体", SimSun, "华文细黑",
        STXihei, "E+H Sans Light", "Microsoft Yahei", "Arial,sans-serif";
}
.project-bar .menu-bar-dropdown .dd-ic {
    background: url(../images/sprite.svg) no-repeat;
    background-position: -9px -50px;
    width: 18px;
    height: 10px;
}
.project-bar .menu-bar-dropdown .dd-item-wrapper {
    position: absolute;
    top: 100%;
    background: #fff;
    right: 0;
    width: auto;
    padding: 5px;
    box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.2);
    visibility: hidden;
    opacity: 0;
    max-height: 0;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    z-index: 2;
}
.project-bar .menu-bar-dropdown .dd-item-wrapper.active {
    visibility: visible;
    opacity: 1;
    max-height: 50vh;
}
.project-bar .menu-bar-dropdown .dd-item-wrapper .dd-item {
    color: #222;
    padding: 5px 10px;
}
.project-info-section {
    width: 100%;
    height: 100%;
    background: #fff;
    padding: 100px 0;
    padding-bottom: 0;
    position: relative;
}
.project-info-section .info-wrapper {
    max-width: 1280px;
    padding: 0 60px;
    margin: auto;
}
.project-info-section .info-wrapper .title {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 40px;
}
.chn .project-info-section .info-wrapper .title {
    font-size: 12px;
    font-family: "HanHei TC", "PingFang HK", "Helvetica Neue", Helvetica, STHeitiTC-Light, "宋体", SimSun, "华文细黑",
        STXihei, "E+H Sans Light", "Microsoft Yahei", "Arial,sans-serif";
}
.project-info-section .info-wrapper .desc {
    font-size: 32px;
    line-height: 34px;
    margin-bottom: 20px;
}
.chn .project-info-section .info-wrapper .desc {
    font-size: 21px;
    font-family: "HanHei TC", "PingFang HK", "Helvetica Neue", Helvetica, STHeitiTC-Light, "宋体", SimSun, "华文细黑",
        STXihei, "E+H Sans Light", "Microsoft Yahei", "Arial,sans-serif";
}
.project-info-section .info-wrapper .info-col-wrap {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    padding-bottom: 60px;
}
.project-info-section .info-wrapper .info-col-wrap .info-col {
    margin-top: 40px;
    flex-basis: calc(33.33% - 20px);
}
.project-info-section .info-wrapper .info-col-wrap .info-col:nth-child(3n - 2) {
    margin-right: 10px;
}
.project-info-section .info-wrapper .info-col-wrap .info-col:nth-child(3n - 1) {
    margin-left: 10px;
    margin-right: 10px;
}
.project-info-section .info-wrapper .info-col-wrap .info-col:nth-child(3n) {
    margin-left: 10px;
}
.project-info-section .info-wrapper .info-col-wrap .info-col .info-title {
    color: #ccc;
    font-size: 18px;
    line-height: 20px;
}
.chn .project-info-section .info-wrapper .info-col-wrap .info-col .info-title {
    font-size: 12px;
    font-family: "HanHei TC", "PingFang HK", "Helvetica Neue", Helvetica, STHeitiTC-Light, "宋体", SimSun, "华文细黑",
        STXihei, "E+H Sans Light", "Microsoft Yahei", "Arial,sans-serif";
}
.project-info-section .info-wrapper .info-col-wrap .info-col .info-detail {
    font-size: 22px;
    line-height: 26px;
    display: -webkit-box;
    max-height: 78px;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    visibility: visible;
    text-overflow: ellipsis;
}
.chn .project-info-section .info-wrapper .info-col-wrap .info-col .info-detail {
    font-size: 15px;
    font-family: "HanHei TC", "PingFang HK", "Helvetica Neue", Helvetica, STHeitiTC-Light, "宋体", SimSun, "华文细黑",
        STXihei, "E+H Sans Light", "Microsoft Yahei", "Arial,sans-serif";
}
.project-progress-section {
    border-top: 1px solid #eee;
    position: relative;
    padding-top: 80px;
    padding-bottom: 100px;
}
.project-progress-section .info-wrapper {
    display: flex;
    max-width: 1280px;
    padding: 0 60px;
    margin: auto;
}
.project-progress-section .info-wrapper .title {
    width: 100%;
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 40px;
}
.chn .project-progress-section .info-wrapper .title {
    font-size: 12px;
    font-family: "HanHei TC", "PingFang HK", "Helvetica Neue", Helvetica, STHeitiTC-Light, "宋体", SimSun, "华文细黑",
        STXihei, "E+H Sans Light", "Microsoft Yahei", "Arial,sans-serif";
}
.project-progress-section .col-progress {
    max-width: 66.66%;
    flex-wrap: wrap;
    flex-direction: column;
    width: 100%;
}
.project-progress-section .col-progress .checklist {
    margin-top: 20px;
}
.project-progress-section .col-progress .checklist .citem {
    margin-bottom: 10px;
}
.project-progress-section .col-progress .checklist .citem:last-child {
    margin-bottom: 0;
}
.project-progress-section .col-progress .checklist .cic {
    background: url(../images/sprite.svg) no-repeat;
    background-position: -91px -96px;
    width: 21px;
    height: 20px;
    min-width: 21px;
}
.project-progress-section .col-progress .checklist .ctext {
    margin-left: 10px;
    font-size: 20px;
    line-height: 20px;
}
.chn .project-progress-section .col-progress .checklist .ctext {
    font-size: 13px;
    font-family: "HanHei TC", "PingFang HK", "Helvetica Neue", Helvetica, STHeitiTC-Light, "宋体", SimSun, "华文细黑",
        STXihei, "E+H Sans Light", "Microsoft Yahei", "Arial,sans-serif";
}
.project-progress-section .col-progress .progress {
    width: calc(50% - 100px);
    margin-right: 100px;
    margin-bottom: 30px;
}
.project-progress-section .col-progress .progress .percent {
    font-size: 22px;
    line-height: 32px;
    align-items: flex-end;
}
.chn .project-progress-section .col-progress .progress .percent {
    font-size: 15px;
    font-family: "HanHei TC", "PingFang HK", "Helvetica Neue", Helvetica, STHeitiTC-Light, "宋体", SimSun, "华文细黑",
        STXihei, "E+H Sans Light", "Microsoft Yahei", "Arial,sans-serif";
}
.project-progress-section .col-progress .progress .percent .num {
    font-size: 40px;
    line-height: 40px;
}
.chn .project-progress-section .col-progress .progress .percent .num {
    font-size: 27px;
    font-family: "HanHei TC", "PingFang HK", "Helvetica Neue", Helvetica, STHeitiTC-Light, "宋体", SimSun, "华文细黑",
        STXihei, "E+H Sans Light", "Microsoft Yahei", "Arial,sans-serif";
}
.project-progress-section .col-progress .progress .percent .type {
    margin-left: 12px;
}
.project-progress-section .col-progress .progress .bar {
    height: 6px;
    margin-top: 10px;
    border-radius: 3px;
    width: 100%;
    background: #eee;
    position: relative;
    overflow: hidden;
}
.project-progress-section .col-progress .progress .bar .fill {
    border-radius: 3px;
    background: #225;
    position: absolute;
    left: 0;
    height: 100%;
    top: 0;
    width: 0%;
    transition: all 1s;
}
.project-progress-section .col-gallery {
    width: 100%;
    max-width: 33.33%;
}
.project-progress-section .col-gallery .progress-gallery {
    max-width: 100%;
    width: 100%;
}
.project-progress-section .col-gallery .progress-gallery .slick-next {
    right: 15px;
    background: url(/images/about/milestone/next.svg);
    width: 40px;
    height: 40px;
}
.project-progress-section .col-gallery .progress-gallery .slick-next::before {
    content: none;
}
.project-progress-section .col-gallery .progress-gallery .slick-prev {
    left: 15px;
    background: url(/images/about/milestone/prev.svg);
    width: 40px;
    height: 40px;
}
.project-progress-section .col-gallery .progress-gallery .slick-prev::before {
    content: none;
}
.project-progress-section .col-gallery .progress-gallery img {
    width: 100%;
}
.register-section {
    width: 100%;
    height: 100%;
    background: #fff;
    padding-top: 80px;
    padding-bottom: 100px;
    position: relative;
}
.register-section .register-wrapper {
    width: 100%;
    max-width: 1080px;
    padding: 0 60px;
    margin: auto;
}
.register-section .register-wrapper .regis-title {
    text-align: center;
    font-size: 32px;
    line-height: 34px;
    margin-bottom: 60px;
}
.chn .register-section .register-wrapper .regis-title {
    font-size: 21px;
    font-family: "HanHei TC", "PingFang HK", "Helvetica Neue", Helvetica, STHeitiTC-Light, "宋体", SimSun, "华文细黑",
        STXihei, "E+H Sans Light", "Microsoft Yahei", "Arial,sans-serif";
}
.register-section .register-wrapper .regis-form {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}
.register-section .register-wrapper .regis-form .make-appointment {
    flex-basis: 100%;
    border-top: 1px solid #eee;
    margin-top: 40px;
    padding-top: 50px;
}
.register-section .register-wrapper .regis-form .make-appointment .wrap-appoint {
    pointer-events: none;
    overflow: hidden;
    flex-basis: 100%;
    display: flex;
    justify-content: space-between;
    flex-flow: row wrap;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    max-height: 0;
    opacity: 0;
    height: auto;
}
.register-section .register-wrapper .regis-form .make-appointment .wrap-appoint.open {
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -ms-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    opacity: 1;
    overflow: initial;
    pointer-events: auto;
    margin-top: 40px;
    max-height: 100%;
}
.flex100 {
    flex-basis: 100%;
}
.wrap-checkbox-consent {
    margin-top: 20px;
}
.wrap-btn {
    flex-basis: 100%;
    display: flex;
}
.wrap-btn .submit-btn {
    cursor: pointer;
    margin-top: 80px;
    background: #000;
    font-size: 20px;
    line-height: 36px;
    color: #fff;
    padding: 0 16px;
}
.chn .wrap-btn .submit-btn {
    font-size: 13px;
    font-family: "HanHei TC", "PingFang HK", "Helvetica Neue", Helvetica, STHeitiTC-Light, "宋体", SimSun, "华文细黑",
        STXihei, "E+H Sans Light", "Microsoft Yahei", "Arial,sans-serif";
}
.img-rsp {
    width: 100%;
    height: auto;
}
.concept-section {
    width: 100%;
    font-size: 0;
    flex-flow: row nowrap;
    display: flex;
    align-items: flex-start;
    position: relative;
}
.concept-section .slick-slide img {
    margin: 0 auto;
}
.concept-section .concept-slider {
    position: relative;
    width: 100%;
    max-width: 50%;
    flex-basis: 50%;
}
.concept-section .concept-slider.main .slick-dots {
    padding: 0;
    position: absolute;
    bottom: calc(50% - 230px);
    left: calc(50% - 144px);
    transform: translate(-50%, -50%);
    max-width: 70px;
    white-space: nowrap;
}
.concept-section .concept-slider.main .slick-dots li {
    display: inline-block;
    width: 10px;
    height: 10px;
    border: 2px solid #fff;
    margin-right: 25px;
    border-radius: 5px;
}
.concept-section .concept-slider.main .slick-dots li:first-child {
    margin-left: 0;
}
.concept-section .concept-slider.main .slick-dots li.slick-active {
    background: #fff;
}
.concept-section .concept-slider.main .slick-dots li button {
    border: 0;
    display: none;
}
.concept-section .concept-slider .slick-list {
    max-width: 100%;
}
.concept-section .concept-slide .slide-img {
    width: 100%;
    height: 100%;
}
.concept-section .concept-slide .slide-img .img-slide {
    width: 100%;
    height: auto;
    min-height: calc(50vw);
}
.concept-section .slide-main {
    position: relative;
    width: 100%;
    display: flex;
}
.concept-section .slide-main .img-slide {
    width: 100%;
    height: 100% !important;
    min-height: calc(50vw);
}
.concept-section .slide-main .slide-overlay {
    z-index: 1;
    position: absolute;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    color: #fff;
    align-items: center;
    left: 0;
    justify-content: center;
}
.concept-section .slide-main .slide-overlay .opa {
    width: 100%;
    height: 100%;
    position: absolute;
    opacity: 0.9;
    left: 0;
    top: 0;
}
.concept-section .slide-main .slide-overlay .text-wrap {
    visibility: visible;
    z-index: 5;
    position: relative;
    max-width: 390px;
    padding: 15px;
    width: 100%;
    -webkit-user-select: text;
    -khtml-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}
.concept-section .slide-main .slide-overlay .text-wrap .slide-text {
    font-size: 18px;
    line-height: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-bottom: 40px;
}
.chn .concept-section .slide-main .slide-overlay .text-wrap .slide-text {
    font-size: 12px;
    font-family: "HanHei TC", "PingFang HK", "Helvetica Neue", Helvetica, STHeitiTC-Light, "宋体", SimSun, "华文细黑",
        STXihei, "E+H Sans Light", "Microsoft Yahei", "Arial,sans-serif";
}
.concept-section .slide-main .slide-overlay .text-wrap .slide-title {
    font-size: 30px;
    line-height: 32px;
    display: -webkit-box;
    max-height: 64px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    visibility: visible;
    text-overflow: ellipsis;
    margin-bottom: 20px;
}
.chn .concept-section .slide-main .slide-overlay .text-wrap .slide-title {
    font-size: 20px;
    font-family: "HanHei TC", "PingFang HK", "Helvetica Neue", Helvetica, STHeitiTC-Light, "宋体", SimSun, "华文细黑",
        STXihei, "E+H Sans Light", "Microsoft Yahei", "Arial,sans-serif";
}
.concept-section .slide-main .slide-overlay .text-wrap .slide-desc {
    font-size: 20px;
    line-height: 26px;
    display: -webkit-box;
    max-height: 260px;
    -webkit-line-clamp: 10;
    -webkit-box-orient: vertical;
    overflow: hidden;
    visibility: visible;
    text-overflow: ellipsis;
    margin-bottom: 60px;
}
.chn .concept-section .slide-main .slide-overlay .text-wrap .slide-desc {
    font-size: 13px;
    font-family: "HanHei TC", "PingFang HK", "Helvetica Neue", Helvetica, STHeitiTC-Light, "宋体", SimSun, "华文细黑",
        STXihei, "E+H Sans Light", "Microsoft Yahei", "Arial,sans-serif";
}
.facility-section {
    width: 100%;
    font-size: 0;
    position: relative;
}
.facility-section .fac-slider-wrap {
    position: relative;
    width: 100%;
}
.facility-section .fac-slider {
    width: 100%;
    position: relative;
}
.facility-section .fac-slider .fac-slide {
    position: relative;
    transition: opacity 0.6s ease-in-out !important;
    opacity: 0;
}
.facility-section .fac-slider .fac-slide.slick-active {
    opacity: 1;
}
.facility-section .fac-slider .fac-slide .dim {
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100%;
}
.facility-section .wrap-fac-menu {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: calc(100% - 180px);
    left: 60px;
    z-index: 1;
}
.facility-section .fac-menu {
    display: inline-flex;
    color: #fff;
    flex-flow: column wrap;
    max-width: 50%;
}
.facility-section .fac-menu .fac-text {
    font-size: 18px;
    line-height: 20px;
    margin-bottom: 40px;
}
.chn .facility-section .fac-menu .fac-text {
    font-size: 12px;
    font-family: "HanHei TC", "PingFang HK", "Helvetica Neue", Helvetica, STHeitiTC-Light, "宋体", SimSun, "华文细黑",
        STXihei, "E+H Sans Light", "Microsoft Yahei", "Arial,sans-serif";
}
.facility-section .fac-menu .title {
    max-width: 225px;
    font-size: 32px;
    line-height: 34px;
    margin-bottom: 40px;
}
.chn .facility-section .fac-menu .title {
    font-size: 21px;
    font-family: "HanHei TC", "PingFang HK", "Helvetica Neue", Helvetica, STHeitiTC-Light, "宋体", SimSun, "华文细黑",
        STXihei, "E+H Sans Light", "Microsoft Yahei", "Arial,sans-serif";
}
.facility-section .fac-menu .wrap-fac-item {
    position: relative;
    display: flex;
    flex-flow: column wrap;
    align-items: flex-start;
    max-width: 100%;
}
.facility-section .fac-menu .wrap-sub-item {
    position: absolute;
    top: 0;
    height: auto;
    min-height: 100%;
    border-left: 1px solid rgba(255, 255, 255, 0.4);
    left: calc(100% + 60px);
    transform: translateY(40px);
    opacity: 0;
    transition: all 0.4s ease, max-height 0.7s ease;
    visibility: hidden;
    pointer-events: none;
    width: 100%;
    min-width: calc(-130vw);
}
.facility-section .fac-menu .wrap-sub-item.active {
    pointer-events: initial;
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}
.facility-section .fac-menu .wrap-sub-item .group {
    padding-left: 30px;
}
.facility-section .fac-menu .wrap-sub-item .group:hover .sub-item {
    opacity: 0.6;
}
.facility-section .fac-menu .wrap-sub-item .sub-item {
    font-size: 20px;
    line-height: 20px;
    transition: opacity 0.4s ease;
    cursor: pointer;
    margin-bottom: 15px;
}
.chn .facility-section .fac-menu .wrap-sub-item .sub-item {
    font-size: 13px;
    font-family: "HanHei TC", "PingFang HK", "Helvetica Neue", Helvetica, STHeitiTC-Light, "宋体", SimSun, "华文细黑",
        STXihei, "E+H Sans Light", "Microsoft Yahei", "Arial,sans-serif";
}
.facility-section .fac-menu .wrap-sub-item .sub-item.active,
.facility-section .fac-menu .wrap-sub-item .sub-item:hover {
    opacity: 1 !important;
}
.facility-section .fac-menu .wrap-sub-item .sub-item:last-child {
    margin-bottom: 0;
}
.facility-section .fac-menu .fac-item {
    max-width: 100%;
    width: 100%;
    cursor: pointer;
    position: relative;
    margin-bottom: 15px;
}
.facility-section .fac-menu .fac-item:last-child .item-text {
    margin-bottom: 0;
}
.facility-section .fac-menu .fac-item.active .arrow-ic,
.facility-section .fac-menu .fac-item:hover .arrow-ic {
    left: 0;
    opacity: 1;
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -ms-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
}
.facility-section .fac-menu .fac-item.active .item-text,
.facility-section .fac-menu .fac-item:hover .item-text {
    transform: translateX(30px);
    -webkit-transition: all 0.1s ease;
    -moz-transition: all 0.1s ease;
    -ms-transition: all 0.1s ease;
    -o-transition: all 0.1s ease;
    transition: all 0.1s ease;
}
.facility-section .fac-menu .fac-item .arrow-ic {
    position: absolute;
    opacity: 0;
    top: 50%;
    left: -18px;
    -webkit-transition: 0.2s ease;
    -moz-transition: 0.2s ease;
    -ms-transition: 0.2s ease;
    -o-transition: 0.2s ease;
    transition: 0.2s ease;
    transform: translateY(-50%);
    background: url(../images/sprite.svg) no-repeat;
    background-position: -9px -72px;
    width: 18px;
    height: 12px;
}
.facility-section .fac-menu .fac-item .item-text {
    font-size: 22px;
    line-height: 22px;
    -webkit-transition: 0.2s ease;
    -moz-transition: 0.2s ease;
    -ms-transition: 0.2s ease;
    -o-transition: 0.2s ease;
    transition: 0.2s ease;
    max-width: 100%;
    width: 100%;
    display: -webkit-box;
    max-height: 44px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    visibility: visible;
    text-overflow: ellipsis;
}
.chn .facility-section .fac-menu .fac-item .item-text {
    font-size: 15px;
    font-family: "HanHei TC", "PingFang HK", "Helvetica Neue", Helvetica, STHeitiTC-Light, "宋体", SimSun, "华文细黑",
        STXihei, "E+H Sans Light", "Microsoft Yahei", "Arial,sans-serif";
}
.gallery-section {
    width: 100%;
    font-size: 0;
    display: flex;
    position: relative;
    flex-flow: row wrap;
}
.gallery-section .wrap-gallery-img {
    display: flex;
    flex-flow: row wrap;
    width: 100%;
    overflow: hidden;
}
.gallery-section .gallery-img {
    position: relative;
    cursor: pointer;
    width: 25%;
    overflow: hidden;
}
.gallery-section .gallery-img:hover .img-gal {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}
.gallery-section .gallery-img .gallery-overlay {
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
    top: 0;
    left: 0;
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateZ(0);
}
.gallery-section .gallery-img .gallery-overlay .plus-ic {
    background: url(../images/sprite.svg) no-repeat;
    background-position: -37px -7px;
    width: 20px;
    height: 20px;
}
.gallery-section .gallery-img .img-gal {
    width: 100%;
    height: auto;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}
.gallery-section .gallery-view-more-wrapper {
    display: flex;
    margin: 50px 0;
    flex-basis: 100%;
    justify-content: center;
}
.gallery-section .gallery-view-more-wrapper .am-curv-line:after,
.gallery-section .gallery-view-more-wrapper .am-curv-line:before {
    border-bottom: 1px solid rgba(34, 34, 34, 0.4);
}
.gallery-section .gallery-view-more-wrapper .gallery-view-more {
    cursor: pointer;
    font-size: 18px;
    line-height: 20px;
}
.chn .gallery-section .gallery-view-more-wrapper .gallery-view-more {
    font-size: 12px;
    font-family: "HanHei TC", "PingFang HK", "Helvetica Neue", Helvetica, STHeitiTC-Light, "宋体", SimSun, "华文细黑",
        STXihei, "E+H Sans Light", "Microsoft Yahei", "Arial,sans-serif";
}
.virtual-tour-section {
    width: 100%;
    font-size: 0;
    color: #fff;
    position: relative;
}
.virtual-tour-section .iframe-wrapper {
    position: relative;
    padding-top: 50%;
    width: 100%;
    max-width: 100%;
}
.virtual-tour-section .iframe-wrapper iframe {
    top: 0;
    position: absolute;
    width: 100%;
    height: 100%;
}
.virtual-tour-section .vt-cover {
    position: relative;
}
.virtual-tour-section .vt-cover .vt-dim {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
}
.virtual-tour-section .vt-cover .vt-play {
    z-index: 1;
    cursor: pointer;
    background: url(/images/project-detail/720_Degree_Icon.svg);
    width: 180px;
    height: 126px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.virtual-tour-section .vt-cover .vt-text-wrap {
    position: absolute;
    bottom: 60px;
    text-align: center;
    width: 100%;
}
.virtual-tour-section .vt-cover .vt-text-wrap .vt-title {
    margin-bottom: 15px;
    font-size: 42px;
    line-height: 44px;
}
.chn .virtual-tour-section .vt-cover .vt-text-wrap .vt-title {
    font-size: 28px;
    font-family: "HanHei TC", "PingFang HK", "Helvetica Neue", Helvetica, STHeitiTC-Light, "宋体", SimSun, "华文细黑",
        STXihei, "E+H Sans Light", "Microsoft Yahei", "Arial,sans-serif";
}
.virtual-tour-section .vt-cover .vt-text-wrap .vt-desc {
    font-size: 28px;
    line-height: 30px;
}
.chn .virtual-tour-section .vt-cover .vt-text-wrap .vt-desc {
    font-size: 19px;
    font-family: "HanHei TC", "PingFang HK", "Helvetica Neue", Helvetica, STHeitiTC-Light, "宋体", SimSun, "华文细黑",
        STXihei, "E+H Sans Light", "Microsoft Yahei", "Arial,sans-serif";
}
.floorplan-section {
    font-size: 0;
    background: #fff;
    position: relative;
    width: 100%;
}
.floorplan-section .plan-slider {
    width: 100%;
    overflow: hidden;
    cursor: pointer;
    background: #fff;
}
.floorplan-section .plan-slider .bgimg {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.floorplan-section .plan-slider .bgimg .height {
    padding-top: 56.25%;
}
.floorplan-section .plan-slider:hover .slick-next {
    right: 40px;
}
.floorplan-section .plan-slider:hover .slick-prev {
    left: 40px;
}
.floorplan-section .plan-slider .slick-next {
    right: -40px;
    background: url(/images/about/milestone/next.svg);
    width: 40px;
    height: 40px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    font-size: 0;
    border: 0;
    position: absolute;
    top: 50%;
    z-index: 1;
    transform: translateY(-15%);
    cursor: pointer;
}
.floorplan-section .plan-slider .slick-next::before {
    content: none;
}
.floorplan-section .plan-slider .slick-prev {
    left: -40px;
    background: url(/images/about/milestone/prev.svg);
    width: 40px;
    height: 40px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    font-size: 0;
    border: 0;
    position: absolute;
    top: 50%;
    z-index: 1;
    transform: translateY(-15%);
    cursor: pointer;
}
.floorplan-section .plan-slider .slick-prev::before {
    content: none;
}
.floorplan-section .plan-slider .slick-list {
    min-height: 1px;
}
.floorplan-section .plan-slider .slick-list .slick-slide {
    height: auto;
}
.floorplan-section .bg-half {
    position: absolute;
    top: -100px;
    left: -20px;
    width: 100vw;
    height: calc(100% + 200px);
}
.floorplan-section .fp-col {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    align-items: flex-start;
    padding: 100px 0;
}
.floorplan-section .wrap-content {
    max-width: 1200px;
    margin: auto;
    width: 100%;
}
.floorplan-section .wrap-content.img {
    overflow: auto;
}
.floorplan-section .wrap-col {
    max-width: calc(30% - 25px);
    width: 100%;
    float: left;
    margin: 0 20px;
}
.floorplan-section .wrap-col.left {
    float: right;
}
.floorplan-section .wrap-col-img {
    position: relative;
    float: left;
    max-width: calc(70% - 75px);
    width: 100%;
    margin: 0 20px;
}
.floorplan-section .wrap-col-img.right {
    float: right;
}
.floorplan-section .wrap-col-img .img {
    width: 100%;
    top: 0;
    left: 0;
    margin: 100px 0;
}
.floorplan-section .dropdown-wrapper {
    display: flex;
    flex-flow: column wrap;
}
.floorplan-section .floorplan-tab {
    margin-bottom: 40px;
    display: flex;
    flex-flow: row wrap;
    color: #fff;
}
.floorplan-section .floorplan-tab .tab {
    z-index: 1;
    margin-right: 30px;
    cursor: pointer;
    border-bottom: 1px solid transparent;
    font-size: 18px;
    line-height: 20px;
}
.floorplan-section .floorplan-tab .tab.active,
.floorplan-section .floorplan-tab .tab:hover {
    border-bottom: 1px solid #fff;
}
.chn .floorplan-section .floorplan-tab .tab {
    font-size: 12px;
    font-family: "HanHei TC", "PingFang HK", "Helvetica Neue", Helvetica, STHeitiTC-Light, "宋体", SimSun, "华文细黑",
        STXihei, "E+H Sans Light", "Microsoft Yahei", "Arial,sans-serif";
}
.floorplan-section .floorplan-tab .tab:last-child {
    margin-right: 0;
}
.map-section {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    font-size: 0;
    position: relative;
}
.map-section .map-col {
    display: flex;
    background: #fff;
    justify-content: center;
    width: 50%;
    align-items: center;
}
.map-section .map-col.right {
    order: 2;
}
.map-section .map-col img {
    cursor: pointer;
}
.map-section .map-col .location-box {
    max-width: 490px;
    width: 100%;
    padding: 0 60px;
    display: flex;
    align-items: flex-start;
    flex-flow: column wrap;
}
.map-section .map-col .location-box .title {
    font-size: 18px;
    line-height: 20px;
    margin-bottom: 40px;
}
.chn .map-section .map-col .location-box .title {
    font-size: 12px;
    font-family: "HanHei TC", "PingFang HK", "Helvetica Neue", Helvetica, STHeitiTC-Light, "宋体", SimSun, "华文细黑",
        STXihei, "E+H Sans Light", "Microsoft Yahei", "Arial,sans-serif";
}
.map-section .map-col .location-box .address {
    font-size: 32px;
    line-height: 34px;
    margin-bottom: 60px;
}
.chn .map-section .map-col .location-box .address {
    font-size: 21px;
    font-family: "HanHei TC", "PingFang HK", "Helvetica Neue", Helvetica, STHeitiTC-Light, "宋体", SimSun, "华文细黑",
        STXihei, "E+H Sans Light", "Microsoft Yahei", "Arial,sans-serif";
}
.map-section .map-col .location-box .wrap-btn {
    display: flex;
}
.map-section .map-col .location-box .wrap-btn .btn {
    min-height: 20px;
    cursor: pointer;
    font-size: 18px;
    line-height: 20px;
    color: #222;
    margin-right: 30px;
}
.chn .map-section .map-col .location-box .wrap-btn .btn {
    font-size: 12px;
    font-family: "HanHei TC", "PingFang HK", "Helvetica Neue", Helvetica, STHeitiTC-Light, "宋体", SimSun, "华文细黑",
        STXihei, "E+H Sans Light", "Microsoft Yahei", "Arial,sans-serif";
}
.map-section .map-col .location-box .wrap-btn .btn:last-child {
    margin-right: 0;
}
.map-section .nearby-places {
    order: 3;
    padding: 80px 0;
    width: 100%;
    flex-basis: 100%;
    border-bottom: 1px solid #eee;
    position: relative;
}
.map-section .nearby-places .wrap-place-type-bar {
    position: relative;
}
.map-section .nearby-places .hint-ar-next {
    position: absolute;
    right: -15px;
    top: 0;
    height: 100%;
    z-index: 1;
    width: 50px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.5) 20%, #fff 100%);
}
.map-section .nearby-places .hint-ar-next .ar {
    background: url(../images/sprite.svg) no-repeat;
    width: 7px;
    height: 12px;
    background-position: -156.5px -94.5px;
}
.map-section .nearby-places .hint-ar-prev {
    position: absolute;
    left: -15px;
    top: 0;
    height: 100%;
    z-index: 1;
    width: 50px;
    background: linear-gradient(to right, #fff 0, rgba(255, 255, 255, 0.5) 80%, rgba(255, 255, 255, 0) 100%);
}
.map-section .nearby-places .hint-ar-prev .ar {
    background: url(../images/sprite.svg) no-repeat;
    width: 7px;
    height: 12px;
    background-position: -139.5px -94.5px;
}
.map-section .nearby-places .wrapper {
    position: relative;
    width: 100%;
    margin: auto;
    max-width: 1060px;
    padding: 0 60px;
}
.map-section .nearby-places .places-detail {
    width: 100%;
    height: 100%;
    visibility: hidden;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translate(10%);
}
.map-section .nearby-places .places-detail.prev {
    transform: translate(-10%);
}
.map-section .nearby-places .places-detail.active {
    transform: translate(0);
    visibility: visible;
    opacity: 1;
    max-height: 1000px;
    margin-top: 40px;
}
.map-section .nearby-places .places-detail .place {
    font-size: 22px;
    line-height: 26px;
    margin-bottom: 10px;
}
.chn .map-section .nearby-places .places-detail .place {
    font-size: 15px;
    font-family: "HanHei TC", "PingFang HK", "Helvetica Neue", Helvetica, STHeitiTC-Light, "宋体", SimSun, "华文细黑",
        STXihei, "E+H Sans Light", "Microsoft Yahei", "Arial,sans-serif";
}
.map-section .nearby-places .places-detail .place .name {
    max-width: 720px;
    width: 30%;
    padding-right: 15px;
    display: -webkit-box;
    max-height: 52px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    visibility: visible;
    text-overflow: ellipsis;
}
.map-section .nearby-places .places-detail .place .distance {
    color: #9b9b9b;
}
.map-section .nearby-places .place-type-bar {
    position: relative;
    width: 100%;
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    border-bottom: 1px solid #dfe1e5;
}
.map-section .nearby-places .place-type-bar::-webkit-scrollbar {
    -webkit-appearance: none;
    display: none;
    width: 0;
    background: 0 0;
}
.map-section .nearby-places .place-type-bar .place-active-line {
    position: absolute;
    width: 140px;
    height: 2px;
    background: #b5705c;
    bottom: 0;
    left: 0;
    transition: all 0.4s ease;
}
.map-section .nearby-places .place-type-bar .place-type {
    cursor: pointer;
    min-width: 140px;
    margin-right: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    flex-flow: column wrap;
}
.map-section .nearby-places .place-type-bar .place-type .wrap-ic {
    width: 42px;
    height: 36px;
}
.map-section .nearby-places .place-type-bar .place-type.active .place-ic.trans,
.map-section .nearby-places .place-type-bar .place-type:hover .place-ic.trans {
    background-position: -242px -76px;
}
.map-section .nearby-places .place-type-bar .place-type.active .place-ic.shop,
.map-section .nearby-places .place-type-bar .place-type:hover .place-ic.shop {
    background-position: -241px -116px;
}
.map-section .nearby-places .place-type-bar .place-type.active .place-ic.education,
.map-section .nearby-places .place-type-bar .place-type:hover .place-ic.education {
    background-position: -236px -157px;
}
.map-section .nearby-places .place-type-bar .place-type.active .place-ic.food,
.map-section .nearby-places .place-type-bar .place-type:hover .place-ic.food {
    background-position: -238px -196px;
}
.map-section .nearby-places .place-type-bar .place-type.active .place-ic.health,
.map-section .nearby-places .place-type-bar .place-type:hover .place-ic.health {
    background-position: -240px -240px;
}
.map-section .nearby-places .place-type-bar .place-type.active .place-ic.recreation,
.map-section .nearby-places .place-type-bar .place-type:hover .place-ic.recreation {
    background-position: -236px -276px;
}
.map-section .nearby-places .place-type-bar .place-type.active .text,
.map-section .nearby-places .place-type-bar .place-type:hover .text {
    color: #222;
}
.map-section .nearby-places .place-type-bar .place-type .place-ic {
    width: 42px;
    height: 36px;
    background: url(../images/sprite.svg) no-repeat;
}
.map-section .nearby-places .place-type-bar .place-type .place-ic.trans {
    width: 23px;
    height: 30px;
    background-position: -194px -76px;
}
.map-section .nearby-places .place-type-bar .place-type .place-ic.shop {
    background-position: -193px -116px;
    width: 24px;
    height: 34px;
}
.map-section .nearby-places .place-type-bar .place-type .place-ic.education {
    background-position: -188px -157px;
    width: 36px;
    height: 28px;
}
.map-section .nearby-places .place-type-bar .place-type .place-ic.food {
    background-position: -190px -196px;
    width: 34px;
    height: 30px;
}
.map-section .nearby-places .place-type-bar .place-type .place-ic.health {
    background-position: -192px -240px;
    width: 30px;
    height: 30px;
}
.map-section .nearby-places .place-type-bar .place-type .place-ic.recreation {
    background-position: -188px -276px;
}
.map-section .nearby-places .place-type-bar .place-type .text {
    font-size: 22px;
    line-height: 22px;
    color: #bbbdc4;
    padding-top: 15px;
    padding-bottom: 20px;
}
.chn .map-section .nearby-places .place-type-bar .place-type .text {
    font-size: 15px;
    font-family: "HanHei TC", "PingFang HK", "Helvetica Neue", Helvetica, STHeitiTC-Light, "宋体", SimSun, "华文细黑",
        STXihei, "E+H Sans Light", "Microsoft Yahei", "Arial,sans-serif";
}
.map-section .nearby-places .place-type-bar .place-type:last-child {
    margin-right: 0;
}
.project-sh {
    margin-top: 30px;
    max-width: 1280px;
    padding: 30px 60px;
    margin: auto;
}
.project-sh .sh-btn {
    cursor: pointer;
    font-size: 18px;
    line-height: 20px;
}
.chn .project-sh .sh-btn {
    font-size: 12px;
    font-family: "HanHei TC", "PingFang HK", "Helvetica Neue", Helvetica, STHeitiTC-Light, "宋体", SimSun, "华文细黑",
        STXihei, "E+H Sans Light", "Microsoft Yahei", "Arial,sans-serif";
}
.project-sh .wrap-sh {
    margin-left: 40px;
}
.project-sh .sh-item {
    width: 20px;
    height: 16px;
    margin-right: 30px;
    background: url(/images/news/sprite.svg) no-repeat;
    cursor: pointer;
    opacity: 0.3;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.project-sh .sh-item:hover {
    opacity: 1;
}
.project-sh .sh-item.fb {
    background-position: -11px -134px;
}
.project-sh .sh-item.wechat {
    background-position: -39px -134px;
}
.project-sh .sh-item.twitter {
    background-position: -70px -136px;
}
.project-sh .sh-item.mail {
    background-position: -100px -136px;
}
.project-sh .sh-item.other {
    background-position: -132px -135px;
    margin-right: 0;
}
.wrap-pjsh {
    width: 100%;
    background: #fafafa;
}
.download-section {
    width: 100%;
    background: #fff;
    position: relative;
}
.download-section .download-wrapper {
    max-width: 1280px;
    width: 100%;
    margin: auto;
    padding: 60px;
    display: flex;
    flex-flow: row wrap;
}
.download-section .download-wrapper .download-item {
    cursor: pointer;
    display: flex;
    flex-basis: calc(33.33% - 27px);
    max-width: calc(33.33% - 27px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 30px;
    width: 100%;
}
.download-section .download-wrapper .download-item .dl-btn {
    margin-left: auto;
    font-size: 18px;
    line-height: 20px;
}
.chn .download-section .download-wrapper .download-item .dl-btn {
    font-size: 12px;
    font-family: "HanHei TC", "PingFang HK", "Helvetica Neue", Helvetica, STHeitiTC-Light, "宋体", SimSun, "华文细黑",
        STXihei, "E+H Sans Light", "Microsoft Yahei", "Arial,sans-serif";
}
.download-section .download-wrapper .download-item .file-ic {
    width: 15px;
    min-width: 15px;
    height: 20px;
    background: url(../images/sprite.svg) no-repeat;
    background-position: -12px -139px;
}
.download-section .download-wrapper .download-item .title {
    margin-left: 12px;
    max-width: calc(100% - 41px);
    font-size: 22px;
    line-height: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.chn .download-section .download-wrapper .download-item .title {
    font-size: 15px;
    font-family: "HanHei TC", "PingFang HK", "Helvetica Neue", Helvetica, STHeitiTC-Light, "宋体", SimSun, "华文细黑",
        STXihei, "E+H Sans Light", "Microsoft Yahei", "Arial,sans-serif";
}
.download-section .download-wrapper .download-item .download-ic {
    margin-left: auto;
    width: 14px;
    height: 18px;
    background: url(../images/sprite.svg) no-repeat;
    background-position: -78px -139px;
}
.download-section .download-wrapper .download-item:nth-child(3n-1) {
    margin-right: 20px;
    margin-left: 20px;
}
.download-section .download-wrapper .download-item:nth-child(1),
.download-section .download-wrapper .download-item:nth-child(3n + 1) {
    margin-right: 20px;
}
.download-section .download-wrapper .download-item:nth-child(3n) {
    margin-left: 20px;
}
.download-section .download-wrapper .download-item:nth-child(n + 4) {
    margin-top: 30px;
}
.download-section .download-wrapper .download-item:hover {
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.1);
}
.promotion-detail-section {
    width: 100%;
    height: 100%;
    position: relative;
    border-bottom: 1px solid #eee;
    padding: 60px;
}
.promotion-detail-section .wrap-detail {
    max-width: 1190px;
    padding: 0 15px;
    margin: auto;
}
.promotion-detail-section .wrap-detail .detail-title {
    font-size: 22px;
    line-height: 22px;
    margin-bottom: 30px;
}
.chn .promotion-detail-section .wrap-detail .detail-title {
    font-size: 15px;
    font-family: "HanHei TC", "PingFang HK", "Helvetica Neue", Helvetica, STHeitiTC-Light, "宋体", SimSun, "华文细黑",
        STXihei, "E+H Sans Light", "Microsoft Yahei", "Arial,sans-serif";
}
.promotion-detail-section .wrap-detail .detail-desc {
    font-size: 20px;
    line-height: 20px;
}
.promotion-detail-section .wrap-detail .detail-desc ul {
    padding: 0;
    padding-left: 20px;
}
.chn .promotion-detail-section .wrap-detail .detail-desc {
    font-size: 13px;
    font-family: "HanHei TC", "PingFang HK", "Helvetica Neue", Helvetica, STHeitiTC-Light, "宋体", SimSun, "华文细黑",
        STXihei, "E+H Sans Light", "Microsoft Yahei", "Arial,sans-serif";
}
.promotion-detail-section .wrap-detail .detail-desc img {
    max-width: 100%;
    height: auto;
}
@media (max-width: 1230px) {
    .project-bar .menu-bar-wrapper .menu-item {
        padding-right: 20px;
        font-size: 16px;
        line-height: 30px;
    }
    .chn .project-bar .menu-bar-wrapper .menu-item {
        font-size: 11px;
        font-family: "HanHei TC", "PingFang HK", "Helvetica Neue", Helvetica, STHeitiTC-Light, "宋体", SimSun,
            "华文细黑", STXihei, "E+H Sans Light", "Microsoft Yahei", "Arial,sans-serif";
    }
}
@media (max-width: 1050px) {
    .map-section .nearby-places .place-type-bar {
        justify-content: flex-start;
    }
    .project-bar .menu-bar-wrapper .menu-item {
        padding-right: 15px;
        font-size: 14px;
        line-height: 30px;
    }
    .chn .project-bar .menu-bar-wrapper .menu-item {
        font-size: 9px;
        font-family: "HanHei TC", "PingFang HK", "Helvetica Neue", Helvetica, STHeitiTC-Light, "宋体", SimSun,
            "华文细黑", STXihei, "E+H Sans Light", "Microsoft Yahei", "Arial,sans-serif";
    }
}
@media (max-width: 1024px) {
    .project-progress-section .col-progress .progress {
        width: calc(50% - 40px);
        margin-right: 40px;
    }
    .concept-section .concept-slider.main .slick-dots {
        bottom: calc(-150%);
    }
    .concept-section .slide-main .slide-overlay .text-wrap .slide-text {
        margin-bottom: 30px;
    }
    .concept-section .slide-main .slide-overlay .text-wrap .slide-title {
        margin-bottom: 20px;
        font-size: 26px;
        line-height: 30px;
    }
    .chn .concept-section .slide-main .slide-overlay .text-wrap .slide-title {
        font-size: 17px;
        font-family: "HanHei TC", "PingFang HK", "Helvetica Neue", Helvetica, STHeitiTC-Light, "宋体", SimSun,
            "华文细黑", STXihei, "E+H Sans Light", "Microsoft Yahei", "Arial,sans-serif";
    }
    .concept-section .slide-main .slide-overlay .text-wrap .slide-desc {
        margin-bottom: 30px;
        font-size: 18px;
        line-height: 22px;
    }
    .chn .concept-section .slide-main .slide-overlay .text-wrap .slide-desc {
        font-size: 12px;
        font-family: "HanHei TC", "PingFang HK", "Helvetica Neue", Helvetica, STHeitiTC-Light, "宋体", SimSun,
            "华文细黑", STXihei, "E+H Sans Light", "Microsoft Yahei", "Arial,sans-serif";
    }
    .download-section .download-wrapper .download-item {
        max-width: calc(50% - 20px);
        width: 100%;
        flex-basis: 100%;
    }
    .download-section .download-wrapper .download-item:nth-child(2n) {
        margin-left: 20px;
        margin-right: 0;
    }
    .download-section .download-wrapper .download-item:nth-child(2n - 1) {
        margin-left: 0;
        margin-right: 20px;
    }
    .download-section .download-wrapper .download-item:nth-child(n + 3) {
        margin-top: 30px;
    }
}
@media (max-width: 860px) {
    .concept-section .slide-img .img-slide {
        min-height: 480px !important;
        object-fit: cover;
    }
    .concept-section .slide-main .img-slide {
        min-height: 480px !important;
    }
    .concept-section .slide-main .slide-overlay {
        justify-content: flex-start;
    }
    .concept-section .slide-main .slide-overlay .text-wrap {
        padding: 50px 15px;
    }
    .concept-section .slide-main .slide-overlay .text-wrap .slide-text {
        margin-bottom: 20px;
    }
}
@media (max-width: 767px) {
    .float-bar {
        padding: 12px 15px;
    }
    .float-bar .float-btn {
        margin-right: 20px;
    }
    .float-bar .float-btn .text {
        font-size: 16px;
        line-height: 20px;
    }
    .chn .float-bar .float-btn .text {
        font-size: 11px;
        font-family: "HanHei TC", "PingFang HK", "Helvetica Neue", Helvetica, STHeitiTC-Light, "宋体", SimSun,
            "华文细黑", STXihei, "E+H Sans Light", "Microsoft Yahei", "Arial,sans-serif";
    }
    .project-bar .project-logo .logo {
        max-width: 100px;
        max-height: 45px;
    }
    .concept-section .slide-img .img-slide {
        min-height: calc(100vw) !important;
    }
    .concept-section .slide-main div.img-slide {
        min-height: calc(100vw) !important;
    }
    .concept-section .slide-main .img-slide {
        min-height: 385px !important;
    }
    .project-sh {
        padding: 30px 15px;
    }
    .project-sh .wrap-sh {
        margin-left: 25px;
    }
    .box-fullscreen .rel-wrapper .close-fullscreen {
        right: 15px;
        top: 20px;
    }
    .box-fullscreen .wrap-slide-fullscreen .slick-arrow.slick-next {
        right: 15px;
    }
    .box-fullscreen .wrap-slide-fullscreen .slick-arrow.slick-prev {
        left: 15px;
    }
    .box-fullscreen .wrap-slide-fullscreen .slick-slide.slide-center img {
        width: auto;
        max-width: 100%;
        height: auto;
    }
    .promotion-detail-section {
        padding: 40px 0;
    }
    .project-info-section {
        padding-top: 50px;
    }
    .project-info-section .info-wrapper {
        padding-left: 15px;
        padding-right: 15px;
    }
    .project-info-section .info-wrapper .title {
        margin-bottom: 30px;
    }
    .project-info-section .info-wrapper .desc {
        margin-bottom: 10px;
        font-size: 26px;
        line-height: 238pxx;
    }
    .chn .project-info-section .info-wrapper .desc {
        font-size: 17px;
        font-family: "HanHei TC", "PingFang HK", "Helvetica Neue", Helvetica, STHeitiTC-Light, "宋体", SimSun,
            "华文细黑", STXihei, "E+H Sans Light", "Microsoft Yahei", "Arial,sans-serif";
    }
    .project-info-section .info-wrapper .info-col-wrap .info-col {
        flex-basis: calc(50% - 10px);
        margin: 0 !important;
        margin-top: 30px !important;
    }
    .project-info-section .info-wrapper .info-col-wrap .info-col .info-title {
        font-size: 16px;
        line-height: 16px;
    }
    .chn .project-info-section .info-wrapper .info-col-wrap .info-col .info-title {
        font-size: 11px;
        font-family: "HanHei TC", "PingFang HK", "Helvetica Neue", Helvetica, STHeitiTC-Light, "宋体", SimSun,
            "华文细黑", STXihei, "E+H Sans Light", "Microsoft Yahei", "Arial,sans-serif";
    }
    .project-info-section .info-wrapper .info-col-wrap .info-col .info-detail {
        font-size: 20px;
        line-height: 20px;
    }
    .chn .project-info-section .info-wrapper .info-col-wrap .info-col .info-detail {
        font-size: 13px;
        font-family: "HanHei TC", "PingFang HK", "Helvetica Neue", Helvetica, STHeitiTC-Light, "宋体", SimSun,
            "华文细黑", STXihei, "E+H Sans Light", "Microsoft Yahei", "Arial,sans-serif";
    }
    .project-info-section .info-wrapper .info-col-wrap .info-col:nth-child(2n) {
        margin-left: 10px !important;
    }
    .project-info-section .info-wrapper .info-col-wrap .info-col:nth-child(2n-1) {
        margin-right: 10px !important;
    }
    .project-progress-section {
        padding-top: 0;
        padding-bottom: 50px;
    }
    .project-progress-section .info-wrapper {
        flex-direction: column;
        padding-left: 15px;
        padding-right: 15px;
    }
    .project-progress-section .info-wrapper .title {
        margin-bottom: 30px;
    }
    .project-progress-section .info-wrapper .col-progress {
        max-width: unset;
        padding-top: 40px;
        order: 2;
    }
    .project-progress-section .info-wrapper .col-progress .progress {
        width: 100%;
        margin-right: 0;
    }
    .project-progress-section .info-wrapper .col-gallery {
        max-width: unset;
        margin-left: -15px;
        margin-right: -15px;
        width: calc(100% + 30px);
    }
    .project-bar {
        padding: 15px;
        height: 60px;
    }
    .project-bar.fixed {
        left: 0 !important;
        width: 100% !important;
    }
    .register-section {
        padding-top: 50px;
        padding-bottom: 60px;
    }
    .register-section .register-wrapper {
        padding-left: 15px;
        padding-right: 15px;
    }
    .register-section .register-wrapper .regis-title {
        margin-bottom: 50px;
        font-size: 30px;
        line-height: 32px;
    }
    .chn .register-section .register-wrapper .regis-title {
        font-size: 20px;
        font-family: "HanHei TC", "PingFang HK", "Helvetica Neue", Helvetica, STHeitiTC-Light, "宋体", SimSun,
            "华文细黑", STXihei, "E+H Sans Light", "Microsoft Yahei", "Arial,sans-serif";
    }
    .register-section .register-wrapper .regis-form .form-col {
        flex-basis: 100%;
    }
    .register-section .register-wrapper .regis-form .make-appointment {
        margin-top: 20px;
        padding-top: 30px;
    }
    .register-section .wrap-btn .submit-btn {
        margin-top: 60px;
    }
    .form-input .wrap-timepicker .time {
        width: calc(33.33% - 10px);
    }
    .concept-section {
        flex-direction: column;
    }
    .concept-section .concept-slider {
        max-width: 100%;
        flex-basis: 100%;
        order: 1;
    }
    .concept-section .concept-slider.main {
        order: 2;
    }
    .concept-section .concept-slider.main .slick-dots {
        text-align: left;
        left: 15px;
        bottom: 30px;
        transform: none;
    }
    .concept-section .concept-slider.main .slick-dots li {
        margin-right: 20px;
    }
    .concept-section .concept-slider .concept-slide .slide-img {
        width: 100%;
        height: 100%;
    }
    .concept-section .concept-slider .concept-slide .slide-img .img-rsp {
        width: 100%;
        height: auto;
    }
    .concept-section .concept-slider .concept-slide .slide-main {
        width: 100%;
    }
    .concept-section .concept-slider .concept-slide .slide-main .slide-overlay {
        justify-content: flex-start;
        align-items: flex-start;
    }
    .concept-section .concept-slider .concept-slide .slide-main .slide-overlay .text-wrap {
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        padding-top: 50px;
    }
    .facility-section .fac-slider-wrap {
        display: flex;
        flex-direction: column-reverse;
    }
    .facility-section .wrap-fac-menu {
        z-index: 1;
        position: relative;
        top: unset;
        left: unset;
        width: 100%;
        transform: translate(0);
    }
    .facility-section .wrap-fac-menu .fac-menu {
        width: 100%;
        background: #222;
        padding: 50px 15px;
        max-width: unset;
    }
    .facility-section .wrap-fac-menu .fac-menu .title {
        max-width: unset;
        font-size: 26px;
        line-height: 28px;
    }
    .chn .facility-section .wrap-fac-menu .fac-menu .title {
        font-size: 17px;
        font-family: "HanHei TC", "PingFang HK", "Helvetica Neue", Helvetica, STHeitiTC-Light, "宋体", SimSun,
            "华文细黑", STXihei, "E+H Sans Light", "Microsoft Yahei", "Arial,sans-serif";
    }
    .facility-section .wrap-fac-menu .fac-menu .wrap-sub-item {
        overflow: hidden;
        position: relative;
        transition: all 0.5s ease, max-height 0.8s ease;
        left: 0;
        max-height: 0;
        border: none;
    }
    .facility-section .wrap-fac-menu .fac-menu .wrap-sub-item .sub-item:last-child {
        margin-bottom: 30px;
    }
    .facility-section .wrap-fac-menu .fac-menu .wrap-sub-item.active {
        max-height: 1000px;
    }
    .facility-section .wrap-fac-menu .fac-menu .fac-item {
        max-width: calc(70%);
    }
    .facility-section .wrap-fac-menu .fac-menu .fac-item .item-text {
        width: 100%;
    }
    .gallery-section .wrap-gallery-img {
        overflow: hidden;
    }
    .gallery-section .gallery-img {
        width: 50%;
    }
    .gallery-section .gallery-view-more-wrapper {
        margin: 35px 0;
    }
    .floorplan-section .floorplan-tab {
        margin-bottom: 30px;
    }
    .floorplan-section .wrap-content.img {
        overflow: initial;
    }
    .floorplan-section .plan-slider .slick-next {
        right: 20px;
    }
    .floorplan-section .plan-slider .slick-prev {
        left: 20px;
    }
    .floorplan-section .plan-slider:hover .slick-next {
        right: 20px;
    }
    .floorplan-section .plan-slider:hover .slick-prev {
        left: 20px;
    }
    .floorplan-section .plan-slider .slick-list {
        width: 100%;
    }
    .floorplan-section .plan-slider .slick-list .slick-slide img {
        width: 100% !important;
    }
    .floorplan-section .wrap-col {
        max-width: 100%;
        float: unset !important;
        position: relative;
        margin: 0;
        padding: 0 15px;
    }
    .floorplan-section .fp-col {
        padding-top: 50px;
        position: relative;
        padding-bottom: 150px;
    }
    .floorplan-section .wrap-col-img {
        max-width: 100%;
        float: unset !important;
        margin: 0;
        margin-top: -120px;
        padding: 0 15px;
    }
    .floorplan-section .wrap-col-img .img {
        margin: 0;
        padding: 0 0 50px;
    }
    .map-section {
        flex-flow: row wrap;
        justify-content: flex-start;
    }
    .map-section .map-col {
        width: 100%;
        order: 1;
    }
    .map-section .map-col.right {
        order: 2;
    }
    .map-section .map-col.left {
        order: 2;
    }
    .map-section .map-col .location-box {
        max-width: unset;
        padding: 0 15px;
        margin-top: 50px;
        margin-bottom: 60px;
    }
    .map-section .map-col .location-box .title {
        font-size: 16px;
        line-height: 16px;
        margin-bottom: 30px;
    }
    .chn .map-section .map-col .location-box .title {
        font-size: 11px;
        font-family: "HanHei TC", "PingFang HK", "Helvetica Neue", Helvetica, STHeitiTC-Light, "宋体", SimSun,
            "华文细黑", STXihei, "E+H Sans Light", "Microsoft Yahei", "Arial,sans-serif";
    }
    .map-section .map-col .location-box .address {
        font-size: 26px;
        line-height: 28px;
        margin-bottom: 40px;
    }
    .chn .map-section .map-col .location-box .address {
        font-size: 17px;
        font-family: "HanHei TC", "PingFang HK", "Helvetica Neue", Helvetica, STHeitiTC-Light, "宋体", SimSun,
            "华文细黑", STXihei, "E+H Sans Light", "Microsoft Yahei", "Arial,sans-serif";
    }
    .map-section .map-col .location-box .wrap-btn .btn {
        font-size: 16px;
        line-height: 16px;
    }
    .chn .map-section .map-col .location-box .wrap-btn .btn {
        font-size: 11px;
        font-family: "HanHei TC", "PingFang HK", "Helvetica Neue", Helvetica, STHeitiTC-Light, "宋体", SimSun,
            "华文细黑", STXihei, "E+H Sans Light", "Microsoft Yahei", "Arial,sans-serif";
    }
    .map-section .nearby-places {
        padding-top: 30px;
        padding-bottom: 40px;
    }
    .map-section .nearby-places .place-type-bar {
        width: calc(115%);
    }
    .map-section .nearby-places .place-type-bar .place-type {
        min-width: 90px;
        margin-right: 5px;
    }
    .map-section .nearby-places .place-type-bar .place-type:last-child {
        margin-right: 15px;
    }
    .map-section .nearby-places .place-type-bar .place-type .text {
        font-size: 19px;
        line-height: 19px;
    }
    .chn .map-section .nearby-places .place-type-bar .place-type .text {
        font-size: 13px;
        font-family: "HanHei TC", "PingFang HK", "Helvetica Neue", Helvetica, STHeitiTC-Light, "宋体", SimSun,
            "华文细黑", STXihei, "E+H Sans Light", "Microsoft Yahei", "Arial,sans-serif";
    }
    .map-section .nearby-places .places-detail .place {
        flex-direction: column;
        margin-bottom: 20px;
    }
    .map-section .nearby-places .places-detail .place .name {
        max-width: 100%;
        width: 100%;
    }
    .map-section .nearby-places .places-detail .place .distance {
        width: 100%;
    }
    .map-section .nearby-places .wrapper {
        padding: 0 15px;
    }
    .download-section .download-wrapper {
        padding: 50px 15px;
    }
    .download-section .download-wrapper .download-item {
        flex-basis: 100%;
        max-width: unset !important;
        margin: 0 !important;
        margin-bottom: 15px !important;
    }
    .download-section .download-wrapper .download-item:last-child {
        margin-bottom: 0 !important;
    }
    .virtual-tour-section .vt-cover .vt-play {
        background: url(/images/project-detail/720_Degree_Icon_Mb.svg);
        width: 90px;
        height: 63px;
    }
    .virtual-tour-section .vt-cover .vt-text-wrap {
        bottom: 15px;
    }
    .virtual-tour-section .vt-cover .vt-text-wrap .vt-title {
        font-size: 34px;
        line-height: 34px;
        margin-bottom: 5px;
    }
    .chn .virtual-tour-section .vt-cover .vt-text-wrap .vt-title {
        font-size: 23px;
        font-family: "HanHei TC", "PingFang HK", "Helvetica Neue", Helvetica, STHeitiTC-Light, "宋体", SimSun,
            "华文细黑", STXihei, "E+H Sans Light", "Microsoft Yahei", "Arial,sans-serif";
    }
    .virtual-tour-section .vt-cover .vt-text-wrap .vt-desc {
        font-size: 26px;
        line-height: 26px;
    }
    .chn .virtual-tour-section .vt-cover .vt-text-wrap .vt-desc {
        font-size: 17px;
        font-family: "HanHei TC", "PingFang HK", "Helvetica Neue", Helvetica, STHeitiTC-Light, "宋体", SimSun,
            "华文细黑", STXihei, "E+H Sans Light", "Microsoft Yahei", "Arial,sans-serif";
    }
}
@media (max-width: 420px) {
    .concept-section .concept-slider .concept-slide .slide-main .slide-overlay .text-wrap {
        padding-top: 30px;
    }
    .concept-section .concept-slider .concept-slide .slide-main .slide-overlay .text-wrap .slide-text {
        margin-bottom: 20px;
    }
    .concept-section .concept-slider .concept-slide .slide-main .slide-overlay .text-wrap .slide-title {
        font-size: 23px;
        line-height: 26px;
        margin-bottom: 20px;
    }
    .chn .concept-section .concept-slider .concept-slide .slide-main .slide-overlay .text-wrap .slide-title {
        font-size: 15px;
        font-family: "HanHei TC", "PingFang HK", "Helvetica Neue", Helvetica, STHeitiTC-Light, "宋体", SimSun,
            "华文细黑", STXihei, "E+H Sans Light", "Microsoft Yahei", "Arial,sans-serif";
    }
    .concept-section .concept-slider .concept-slide .slide-main .slide-overlay .text-wrap .slide-desc {
        font-size: 16px;
        line-height: 20px;
        margin-bottom: 20px;
    }
    .chn .concept-section .concept-slider .concept-slide .slide-main .slide-overlay .text-wrap .slide-desc {
        font-size: 11px;
        font-family: "HanHei TC", "PingFang HK", "Helvetica Neue", Helvetica, STHeitiTC-Light, "宋体", SimSun,
            "华文细黑", STXihei, "E+H Sans Light", "Microsoft Yahei", "Arial,sans-serif";
    }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .register-section .register-wrapper .regis-form .make-appointment .wrap-appoint.open {
        overflow: visible;
    }
}
.form-col {
    display: flex;
    align-items: flex-start;
    flex-basis: calc(50% - 20px);
    max-width: calc(50% - 20px);
    width: 100%;
}
.regis-form .form-col {
    display: inline-flex;
    align-items: flex-start;
    flex-basis: calc(50% - 20px);
    max-width: calc(50% - 20px);
    width: 100%;
}
.f100 {
    flex-basis: 100%;
    max-width: 100%;
}
.group_ul {
    padding: 12px 15px 12px 0;
    width: 100%;
    cursor: pointer;
    height: 54px;
}
.group_ul.transparent {
    max-height: 0;
    padding: 0;
    opacity: 0;
    z-index: -1;
    margin: 0;
    border: 0;
}
.group_ul.white .ul_ic {
    background: url(../images/sprite.svg) no-repeat;
    background-position: -12px -32px;
}
.group_ul.white .ul_box {
    color: #000;
}
.group_ul .ul_text {
    white-space: nowrap;
    max-width: 100%;
    /* overflow: hidden; */
    text-overflow: ellipsis;
    position: relative;
    height: 24px;
    z-index: 1;
    background-color: transparent;
    font-size: 14px;
    line-height: 40px;
    transition: all 0.2s;
    -webkit-transform: translateY(2px);
    -moz-transform: translateY(2px);
    -ms-transform: translateY(2px);
    -o-transform: translateY(2px);
    transform: translateY(2px);
    max-height: 60;
    visibility: visible;
    opacity: 1;
}
.chn .group_ul .ul_text {
    font-size: 15px;
    font-family: "HanHei TC", "PingFang HK", "Helvetica Neue", Helvetica, STHeitiTC-Light, "宋体", SimSun, "华文细黑",
        STXihei, "E+H Sans Light", "Microsoft Yahei", "Arial,sans-serif";
}
.group_ul.selected .ul_text {
    visibility: visible;
    opacity: 1;
    max-height: 24px;
}
.group_ul .ul_ic {
    position: absolute;
    right: 0;
    bottom: 16px;
    background: url(../images/sprite.svg) no-repeat;
    background-position: -12px -17px;
    width: 12px;
    height: 7px;
    transform: translateY(-50%);
}
.group_ul .ul_box {
    min-width: 300px;
    max-height: 360px;
    overflow-y: auto;
}
.group_ul .ul_box .li_box {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}
.group_ul .ul_box .li_box.ckbx .checkbox {
    margin-right: 14px;
    width: 18px;
    height: 18px;
    min-width: 18px;
    border-radius: 2px;
    border: 1px solid rgba(34, 34, 34, 0.5);
}
.group_ul .ul_box .li_box.ckbx .txt {
    display: -webkit-box;
    max-height: 48px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    visibility: visible;
    text-overflow: ellipsis;
}
.group_ul .ul_box .li_box.ckbx.active .checkbox {
    background: url(../images/sprite.svg) no-repeat;
    background-position: -38px -175px;
    border: none;
}
.group_ul .ul_box .li_box.hasflag {
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 30px;
}
.group_ul .ul_box .li_box.hasflag .flag {
    margin-top: 0;
    left: 0;
    top: unset;
    bottom: unset;
}
.group_ul .ul_box .li_box:hover {
    color: #b5705c;
}
.group_ul .ul_box .li_box.active:not(.ckbx) {
    color: #b5705c;
}
.group_ul .ul_box .li_box:last-child {
    margin-bottom: 0;
}
.group_ul.active .ul_ic {
    transform: translateY(-50%) rotate(180deg);
}
.group_ul.active .ul_box {
    z-index: 2;
    top: 52px !important;
    left: 0 !important;
    background: #fff;
    padding: 20px;
    box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.2);
    position: absolute;
}
.form-input {
    position: relative;
  border-bottom: none;
  width: 100%;
  color: #222;
  height: 40px;
  font-size: 18px;
  line-height: 20px;
  margin-bottom: 12px;
  padding-top: 12px;
  padding-bottom: 6px;
  background: #fff;
  border-radius: 20px;
  padding: 0 18px;
}
.form-input.textarea {
    height: auto;
}
.form-input textarea:focus::placeholder {
    opacity: 0;
}
.form-input textarea:focus::-webkit-input-placeholder {
    opacity: 0;
}
.form-input .ul_ic {
    pointer-events: none;
    position: absolute;
    right: 15px;
    bottom: 10px;
    background: url(../images/sprite.svg) no-repeat;
    background-position: -12px -17px;
    width: 12px;
    height: 7px;
    transform: translateY(-50%);
}
.chn .form-input {
    font-size: 15px;
    font-family: "HanHei TC", "PingFang HK", "Helvetica Neue", Helvetica, STHeitiTC-Light, "宋体", SimSun, "华文细黑",
        STXihei, "E+H Sans Light", "Microsoft Yahei", "Arial,sans-serif";
}
.form-input .validate-box {
    position: absolute;
    top: 100%;
    margin-top: 10px;
    display: flex;
    align-items: center;
}
.form-input .validate-box .valid-ic {
    background: url(../images/sprite.svg) no-repeat;
    background-position: -71px -180px;
    width: 13px;
    height: 13px;
    margin-right: 4px;
}
.form-input .validate-box .valid-text {
    color: #e44746;
    font-size: 16px;
    line-height: 18px;
}
.chn .form-input .validate-box .valid-text {
    font-size: 11px;
    font-family: "HanHei TC", "PingFang HK", "Helvetica Neue", Helvetica, STHeitiTC-Light, "宋体", SimSun, "华文细黑",
        STXihei, "E+H Sans Light", "Microsoft Yahei", "Arial,sans-serif";
}
.form-input.invalid {
    border-color: #e44746 !important;
    margin-bottom: 50px;
}
.form-input.invalid .lb {
    color: #e44746;
}
.form-input.hasflag {
    max-width: calc(50% - 10px);
    margin-right: 10px;
}
.form-input.hasflag .lb {
    font-size: 18px;
    line-height: 20px;
    transform: translateY(-26px);
}
.chn .form-input.hasflag .lb {
    font-size: 12px;
    font-family: "HanHei TC", "PingFang HK", "Helvetica Neue", Helvetica, STHeitiTC-Light, "宋体", SimSun, "华文细黑",
        STXihei, "E+H Sans Light", "Microsoft Yahei", "Arial,sans-serif";
}
.form-input.hasflag .ul_text {
    padding-left: 30px;
    visibility: visible;
    opacity: 1;
    max-height: 24px;
}
.form-input.withflag {
    max-width: calc(100% - 10px);
    margin-left: 10px;
}
.form-input.lineID {
    top: -20px;
}
.form-input.white {
    color: #fff;
    border-color: #fff;
}
.form-input.white .ul_ic {
    background: url(../images/sprite.svg) no-repeat;
    background-position: -12px -32px;
}
.form-input.white.invalid {
    border-color: #e44746;
}
.form-input.white.invalid .lb {
    color: #e44746;
}
.form-input.white .lb {
    color: rgba(255, 255, 255, 0.5);
}
.form-input.white input,
.form-input.white textarea {
    color: #fff;
}
.form-input.white input::placeholder,
.form-input.white textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}
.form-input input,
.form-input textarea {
    background-color: transparent;
    font-size: 16px;
    line-height: 24px;
    width: 100%;
    padding: 0;
    height: 100%;
}
.chn .form-input input,
.chn .form-input textarea {
    font-size: 15px;
    font-family: "HanHei TC", "PingFang HK", "Helvetica Neue", Helvetica, STHeitiTC-Light, "宋体", SimSun, "华文细黑",
        STXihei, "E+H Sans Light", "Microsoft Yahei", "Arial,sans-serif";
}
.form-input input.textarea,
.form-input textarea.textarea {
    transform: translateY(6px);
    overflow: hidden;
}
.form-input input::placeholder,
.form-input textarea::placeholder {
    color: #222;
}
.form-input input:focus ~ .lb,
.form-input input:not([value=""]) ~ .lb,
.form-input textarea:focus ~ .lb,
.form-input textarea:not([value=""]) ~ .lb {
    font-size: 14px;
    line-height: 20px;
    transform: translateY(-20px);
}
.chn .form-input input:focus ~ .lb,
.chn .form-input input:not([value=""]) ~ .lb,
.chn .form-input textarea:focus ~ .lb,
.chn .form-input textarea:not([value=""]) ~ .lb {
    font-size: 12px;
    font-family: "HanHei TC", "PingFang HK", "Helvetica Neue", Helvetica, STHeitiTC-Light, "宋体", SimSun, "华文细黑",
        STXihei, "E+H Sans Light", "Microsoft Yahei", "Arial,sans-serif";
}
.form-input input.time-picker:focus ~ .wrap-timepicker,
.form-input textarea.time-picker:focus ~ .wrap-timepicker {
    max-height: 500px;
    overflow-y: auto;
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.form-input .wrap-timepicker {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 25px;
    width: 100%;
    box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.2);
    visibility: hidden;
    opacity: 0;
    max-height: 0;
    background: #fff;
    z-index: 3;
    position: absolute;
    top: 100%;
    -webkit-transition: 0.1s all 0.2s ease-out;
    -moz-transition: 0.1s all 0.2s ease-out;
    -ms-transition: 0.1s all 0.2s ease-out;
    -o-transition: 0.1s all 0.2s ease-out;
    transition: 0.1s all 0.2s ease-out;
}
.form-input .wrap-timepicker .time {
    cursor: pointer;
    justify-content: center;
    display: flex;
    height: 36px;
    align-items: center;
    width: calc(25% - 10px);
    margin: 5px;
    border-radius: 3px;
    border: 1px solid #dfe1e5;
    background: #fff;
    font-size: 20px;
    line-height: 22px;
}
.chn .form-input .wrap-timepicker .time {
    font-size: 13px;
    font-family: "HanHei TC", "PingFang HK", "Helvetica Neue", Helvetica, STHeitiTC-Light, "宋体", SimSun, "华文细黑",
        STXihei, "E+H Sans Light", "Microsoft Yahei", "Arial,sans-serif";
}
.form-input .wrap-timepicker .time.disabled {
    color: #ccc;
    pointer-events: none;
}
.form-input .wrap-timepicker .time.disabled:hover {
    background: #fff;
    border-color: #dfe1e5;
    color: #ccc;
}
.form-input .wrap-timepicker .time.active,
.form-input .wrap-timepicker .time:hover {
    background: #b5705c;
    border-color: #b5705c;
    color: #fff;
}
.form-input .lb {
	pointer-events: none;
	transition: all 0.2s ease;
	color: rgba(34, 34, 34,0.6);
	font-size: 20px;
	line-height: 24px;
	position: absolute;
	top: 10px;
	left: 20px;
	font-weight: 300;
}
.chn .form-input .lb {
    font-size: 15px;
    font-family: "HanHei TC", "PingFang HK", "Helvetica Neue", Helvetica, STHeitiTC-Light, "宋体", SimSun, "华文细黑",
        STXihei, "E+H Sans Light", "Microsoft Yahei", "Arial,sans-serif";
}
#ui-datepicker-div {
    padding: 0;
}
.form-radio {
    width: 100%;
    margin-top: 10px;
    margin-bottom: 20px;
}
.form-radio .radio-title {
    color: rgba(34, 34, 34, 0.4);
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 15px;
}
.chn .form-radio .radio-title {
    font-size: 12px;
    font-family: "HanHei TC", "PingFang HK", "Helvetica Neue", Helvetica, STHeitiTC-Light, "宋体", SimSun, "华文细黑",
        STXihei, "E+H Sans Light", "Microsoft Yahei", "Arial,sans-serif";
}
.wrap-radio {
    display: flex;
    flex-flow: row wrap;
}
.wrap-radio .radio {
    display: flex;
    margin-right: 30px;
    margin-bottom: 10px;
    align-items: flex-start;
}
.wrap-radio .radio input[type="radio"] {
    cursor: pointer;
    margin: 0;
    border: 1px solid #222;
    width: 20px;
    min-width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-right: 10px;
    background: 0 0;
}
.wrap-radio .radio input[type="radio"]:checked {
    border-width: 6px;
}
.wrap-radio .radio label {
    cursor: pointer;
    font-size: 22px;
    line-height: 20px;
}
.chn .wrap-radio .radio label {
    font-size: 15px;
    font-family: "HanHei TC", "PingFang HK", "Helvetica Neue", Helvetica, STHeitiTC-Light, "宋体", SimSun, "华文细黑",
        STXihei, "E+H Sans Light", "Microsoft Yahei", "Arial,sans-serif";
}
.wrap-checkbox {
    display: flex;
    flex-flow: row wrap;
}
.wrap-checkbox.invalid input[type="checkbox"] {
    border: 1px solid #e44746 !important;
}
.wrap-checkbox .checkbox {
    display: flex;
    align-items: flex-start;
    margin-right: 30px;
    margin-bottom: 10px;
}
.wrap-checkbox .checkbox.f100 {
    flex-basis: 100%;
}
.wrap-checkbox .checkbox input[type="checkbox"] {
    cursor: pointer;
    margin: 0;
    margin-right: 14px;
    width: 18px;
    height: 18px;
    min-width: 18px;
    border-radius: 2px;
    border: 1px solid rgba(34, 34, 34, 0.5);
}
.wrap-checkbox .checkbox input[type="checkbox"]:checked {
    background: url(../images/sprite.svg) no-repeat;
    background-position: -38px -175px;
    border: none;
}
.wrap-checkbox .checkbox label {
    font-size: 13px;
    line-height: 20px;
}
.chn .wrap-checkbox .checkbox label {
    font-size: 15px;
    font-family: "HanHei TC", "PingFang HK", "Helvetica Neue", Helvetica, STHeitiTC-Light, "宋体", SimSun, "华文细黑",
        STXihei, "E+H Sans Light", "Microsoft Yahei", "Arial,sans-serif";
}
.wrap-checkbox .checkbox label a {
    /* border-bottom: 1px solid #000; */
}
.contact-option.disabled .form-input {
    opacity: 0.5;
}
.wrap-btn {
    flex-basis: 100%;
    display: flex;
    justify-self: center;
}
.wrap-btn .submit-btn {
    font-family: "Avenir_Next_bold";
	cursor: pointer;
	font-size: 14px;
	line-height: 14px;
	background-color: #f3dd4c;
	display: flex;
	float: none;
	margin: auto;
	border: none;
	padding: 8px 20px;
	color: #53565A;
	font-weight: bold;
	border-radius: 20px;
	padding: 14px 26px;
}
.chn .wrap-btn .submit-btn {
    font-size: 12px;
    font-family: "HanHei TC", "PingFang HK", "Helvetica Neue", Helvetica, STHeitiTC-Light, "宋体", SimSun, "华文细黑",
        STXihei, "E+H Sans Light", "Microsoft Yahei", "Arial,sans-serif";
}
.wrap-btn .clear-btn {
    cursor: pointer;
    margin-top: 40px;
    margin-right: 30px;
    font-size: 18px;
    line-height: 20px;
}
.chn .wrap-btn .clear-btn {
    font-size: 12px;
    font-family: "HanHei TC", "PingFang HK", "Helvetica Neue", Helvetica, STHeitiTC-Light, "宋体", SimSun, "华文细黑",
        STXihei, "E+H Sans Light", "Microsoft Yahei", "Arial,sans-serif";
}
.form-input #ui-datepicker-div {
    font-family: db_helvethaica_xregular;
    font-smoothing: antialiased;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-overflow-scrolling: touch;
    font-weight: 400;
    top: 52px !important;
    left: 0 !important;
    background: #fff;
    width: 100%;
    padding: 25px 30px;
    border-radius: 0;
    z-index: 999 !important;
    border: none;
    box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.2);
}
.form-input #ui-datepicker-div .ui-datepicker-calendar {
    margin: 0;
}
.form-input #ui-datepicker-div .ui-menu-item-wrapper.ui-state-active {
    color: #b5705c;
}
.form-input #ui-datepicker-div .ui-selectmenu-menu {
    width: auto !important;
    min-width: 150px;
}
.form-input #ui-datepicker-div ul {
    box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.2);
    margin: 0 !important;
    padding: 20px !important;
}
.form-input #ui-datepicker-div ul li {
    font-size: 22px;
    line-height: 24px;
}
.chn .form-input #ui-datepicker-div ul li {
    font-size: 15px;
    font-family: "HanHei TC", "PingFang HK", "Helvetica Neue", Helvetica, STHeitiTC-Light, "宋体", SimSun, "华文细黑",
        STXihei, "E+H Sans Light", "Microsoft Yahei", "Arial,sans-serif";
}
.form-input #ui-datepicker-div ul li:last-child div {
    margin-bottom: 0 !important;
}
.form-input #ui-datepicker-div ul li div {
    padding: 0 !important;
    margin-bottom: 10px !important;
}
.form-input #ui-datepicker-div ul li div:hover {
    color: #b5705c;
}
.form-input #ui-datepicker-div .ui-widget {
    font-family: db_helvethaica_xregular;
    font-smoothing: antialiased;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-overflow-scrolling: touch;
    font-weight: 400;
    border: 0;
    font-size: 32px;
    line-height: 32px;
    background: #fff;
    -webkit-appearance: none;
    margin-right: 5px;
    width: auto;
    padding: 0;
}
.chn .form-input #ui-datepicker-div .ui-widget {
    font-size: 21px;
    font-family: "HanHei TC", "PingFang HK", "Helvetica Neue", Helvetica, STHeitiTC-Light, "宋体", SimSun, "华文细黑",
        STXihei, "E+H Sans Light", "Microsoft Yahei", "Arial,sans-serif";
}
.form-input #ui-datepicker-div .ui-widget .ui-selectmenu-text {
    margin-right: 0;
}
.form-input #ui-datepicker-div select.ui-datepicker-month {
    font-family: db_helvethaica_xregular;
    font-smoothing: antialiased;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-overflow-scrolling: touch;
    font-weight: 400;
    border: 0;
    font-size: 32px;
    line-height: 32px;
    background: #fff;
    width: auto;
    -webkit-appearance: none;
    margin-right: 5px;
}
.chn .form-input #ui-datepicker-div select.ui-datepicker-month {
    font-size: 21px;
    font-family: "HanHei TC", "PingFang HK", "Helvetica Neue", Helvetica, STHeitiTC-Light, "宋体", SimSun, "华文细黑",
        STXihei, "E+H Sans Light", "Microsoft Yahei", "Arial,sans-serif";
}
.form-input #ui-datepicker-div select.ui-datepicker-year {
    font-family: db_helvethaica_xregular;
    font-smoothing: antialiased;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-overflow-scrolling: touch;
    font-weight: 400;
    border: 0;
    font-size: 32px;
    line-height: 32px;
    background: #fff;
    width: auto;
    -webkit-appearance: none;
}
.chn .form-input #ui-datepicker-div select.ui-datepicker-year {
    font-size: 21px;
    font-family: "HanHei TC", "PingFang HK", "Helvetica Neue", Helvetica, STHeitiTC-Light, "宋体", SimSun, "华文细黑",
        STXihei, "E+H Sans Light", "Microsoft Yahei", "Arial,sans-serif";
}
.form-input #ui-datepicker-div .ui-datepicker-prev {
    right: 37px !important;
    position: absolute;
    font-size: 0;
    left: unset !important;
    width: 7px;
    height: 12px;
    background: url(../images/sprite.svg) no-repeat;
    background-position: -7.5px -95.5px;
}
.form-input #ui-datepicker-div .ui-datepicker-next {
    position: absolute;
    right: 0;
    font-size: 0;
    width: 7px;
    height: 12px;
    background: url(../images/sprite.svg) no-repeat;
    background-position: -24.5px -95.5px;
}
.form-input #ui-datepicker-div .ui-widget-header {
    border: 0;
    background: #fff;
    position: relative;
    padding: 0;
    display: flex;
    align-items: center;
    font-size: 22px;
    line-height: 28px;
}
.chn .form-input #ui-datepicker-div .ui-widget-header {
    font-size: 15px;
    font-family: "HanHei TC", "PingFang HK", "Helvetica Neue", Helvetica, STHeitiTC-Light, "宋体", SimSun, "华文细黑",
        STXihei, "E+H Sans Light", "Microsoft Yahei", "Arial,sans-serif";
}
.form-input #ui-datepicker-div .ui-widget-header .ui-datepicker-title {
    margin: 0 !important;
    margin-right: auto !important;
}
.form-input #ui-datepicker-div .ui-datepicker-calendar {
    margin-top: 20px;
    width: 100%;
    text-align: center;
}
.form-input #ui-datepicker-div .ui-datepicker-calendar thead {
    color: #b5705c;
    margin-bottom: 10px;
}
.form-input #ui-datepicker-div .ui-datepicker-calendar thead tr th {
    width: 35px;
}
.form-input #ui-datepicker-div .ui-state-disabled .ui-state-default {
    color: #ccc !important;
}
.form-input #ui-datepicker-div .ui-datepicker-today.ui-datepicker-days-cell-over .ui-state-default {
    background: #b5705c;
    color: #fff;
}
.form-input #ui-datepicker-div .ui-state-default,
.form-input #ui-datepicker-div .ui-widget-content .ui-state-default {
    display: block;
    color: #222;
    background: #fff;
    border: 0;
    width: 35px;
    margin: 3px auto;
    height: 35px;
    border-radius: 50%;
    text-align: center;
    font-size: 22px;
    line-height: 35px;
}
.form-input #ui-datepicker-div .ui-state-default.ui-state-active,
.form-input #ui-datepicker-div .ui-state-default.ui-state-hover,
.form-input #ui-datepicker-div .ui-widget-content .ui-state-default.ui-state-active,
.form-input #ui-datepicker-div .ui-widget-content .ui-state-default.ui-state-hover {
    background: #b5705c;
    color: #fff;
}
.chn .form-input #ui-datepicker-div .ui-state-default,
.chn .form-input #ui-datepicker-div .ui-widget-content .ui-state-default {
    font-size: 15px;
    font-family: "HanHei TC", "PingFang HK", "Helvetica Neue", Helvetica, STHeitiTC-Light, "宋体", SimSun, "华文细黑",
        STXihei, "E+H Sans Light", "Microsoft Yahei", "Arial,sans-serif";
}
@media (max-width: 767px) {
    .wrap-checkbox {
        flex-wrap: wrap;
    }
    .wrap-checkbox .checkbox {
        margin-right: 15px;
        flex-basis: calc(50% - 15px);
    }
    .wrap-radio {
        flex-wrap: wrap;
    }
    .wrap-radio .radio {
        margin-right: 15px;
        flex-basis: calc(50% - 15px);
    }
    .form-col {
        flex-basis: 100%;
        max-width: 100%;
    }
    .form-input {
        margin-bottom: 20px;
    }
    .form-input.invalid {
        margin-bottom: 40px;
    }
    .form-input .wrap-timepicker .time {
        margin: 4px;
        width: calc(33.33% - 8px);
    }
    .wrap-btn .submit-btn {
        margin-top: 30px;
    }
    .wrap-btn .clear-btn {
        margin-top: 30px;
    }
}
@media (max-width: 360px) {
    .form-input #ui-datepicker-div {
        padding: 20px 10px;
    }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .group_ul .ul_box .li_box.hasflag .flag {
        top: 4px;
    }
}
.flag {
    width: 20px;
    height: 15px;
    box-shadow: 0 0 1px 0 #888;
    margin-top: 8px;
    background-image: url(../images/flags.png);
    background-repeat: no-repeat;
    background-color: #dbdbdb;
    background-size: 5630px 15px;
    background-position: 30px 30px;
    font-size: 0;
    display: inline-block;
    margin-right: 10px;
    position: absolute;
    bottom: 14px;
}
.flag.ac {
    height: 10px;
    background-position: 0 0;
}
.flag.ad {
    height: 14px;
    background-position: -22px 0;
}
.flag.ae {
    height: 10px;
    background-position: -44px 0;
}
.flag.af {
    height: 14px;
    background-position: -66px 0;
}
.flag.ag {
    height: 14px;
    background-position: -88px 0;
}
.flag.ai {
    height: 10px;
    background-position: -110px 0;
}
.flag.al {
    height: 15px;
    background-position: -132px 0;
}
.flag.am {
    height: 10px;
    background-position: -154px 0;
}
.flag.ao {
    height: 14px;
    background-position: -176px 0;
}
.flag.aq {
    height: 14px;
    background-position: -198px 0;
}
.flag.ar {
    height: 13px;
    background-position: -220px 0;
}
.flag.as {
    height: 10px;
    background-position: -242px 0;
}
.flag.at {
    height: 14px;
    background-position: -264px 0;
}
.flag.au {
    height: 10px;
    background-position: -286px 0;
}
.flag.aw {
    height: 14px;
    background-position: -308px 0;
}
.flag.ax {
    height: 13px;
    background-position: -330px 0;
}
.flag.az {
    height: 10px;
    background-position: -352px 0;
}
.flag.ba {
    height: 10px;
    background-position: -374px 0;
}
.flag.bb {
    height: 14px;
    background-position: -396px 0;
}
.flag.bd {
    height: 12px;
    background-position: -418px 0;
}
.flag.be {
    height: 15px;
    background-position: -440px 0;
}
.flag.bf {
    height: 14px;
    background-position: -460px 0;
}
.flag.bg {
    height: 12px;
    background-position: -482px 0;
}
.flag.bh {
    height: 12px;
    background-position: -504px 0;
}
.flag.bi {
    height: 12px;
    background-position: -526px 0;
}
.flag.bj {
    height: 14px;
    background-position: -548px 0;
}
.flag.bl {
    height: 14px;
    background-position: -570px 0;
}
.flag.bm {
    height: 10px;
    background-position: -592px 0;
}
.flag.bn {
    height: 10px;
    background-position: -614px 0;
}
.flag.bo {
    height: 14px;
    background-position: -636px 0;
}
.flag.bq {
    height: 14px;
    background-position: -658px 0;
}
.flag.br {
    height: 14px;
    background-position: -680px 0;
}
.flag.bs {
    height: 10px;
    background-position: -702px 0;
}
.flag.bt {
    height: 14px;
    background-position: -724px 0;
}
.flag.bv {
    height: 15px;
    background-position: -746px 0;
}
.flag.bw {
    height: 14px;
    background-position: -768px 0;
}
.flag.by {
    height: 10px;
    background-position: -790px 0;
}
.flag.bz {
    height: 14px;
    background-position: -812px 0;
}
.flag.ca {
    height: 10px;
    background-position: -834px 0;
}
.flag.cc {
    height: 10px;
    background-position: -856px 0;
}
.flag.cd {
    height: 15px;
    background-position: -878px 0;
}
.flag.cf {
    height: 14px;
    background-position: -900px 0;
}
.flag.cg {
    height: 14px;
    background-position: -922px 0;
}
.flag.ch {
    height: 15px;
    background-position: -944px 0;
}
.flag.ci {
    height: 14px;
    background-position: -961px 0;
}
.flag.ck {
    height: 10px;
    background-position: -983px 0;
}
.flag.cl,
.flag.cm,
.flag.cn,
.flag.co,
.flag.cp {
    height: 14px;
}
.flag.cl {
    background-position: -1005px 0;
}
.flag.cm {
    background-position: -1027px 0;
}
.flag.cn {
    background-position: -1049px 0;
}
.flag.co {
    background-position: -1071px 0;
}
.flag.cp {
    background-position: -1093px 0;
}
.flag.cr {
    height: 12px;
    background-position: -1115px 0;
}
.flag.cu {
    height: 10px;
    background-position: -1137px 0;
}
.flag.cv {
    height: 12px;
    background-position: -1159px 0;
}
.flag.cw {
    height: 14px;
    background-position: -1181px 0;
}
.flag.cx {
    height: 10px;
    background-position: -1203px 0;
}
.flag.cy {
    height: 13px;
    background-position: -1225px 0;
}
.flag.cz {
    height: 14px;
    background-position: -1247px 0;
}
.flag.de {
    height: 12px;
    background-position: -1269px 0;
}
.flag.dg {
    height: 10px;
    background-position: -1291px 0;
}
.flag.dj {
    height: 14px;
    background-position: -1313px 0;
}
.flag.dk {
    height: 15px;
    background-position: -1335px 0;
}
.flag.dm {
    height: 10px;
    background-position: -1357px 0;
}
.flag.do {
    height: 13px;
    background-position: -1379px 0;
}
.flag.dz {
    height: 14px;
    background-position: -1401px 0;
}
.flag.ea {
    height: 14px;
    background-position: -1423px 0;
}
.flag.ec {
    height: 14px;
    background-position: -1445px 0;
}
.flag.ee {
    height: 13px;
    background-position: -1467px 0;
}
.flag.eg {
    height: 14px;
    background-position: -1489px 0;
}
.flag.eh {
    height: 10px;
    background-position: -1511px 0;
}
.flag.er {
    height: 10px;
    background-position: -1533px 0;
}
.flag.es {
    height: 14px;
    background-position: -1555px 0;
}
.flag.et {
    height: 10px;
    background-position: -1577px 0;
}
.flag.eu {
    height: 14px;
    background-position: -1599px 0;
}
.flag.fi {
    height: 12px;
    background-position: -1621px 0;
}
.flag.fj {
    height: 10px;
    background-position: -1643px 0;
}
.flag.fk {
    height: 10px;
    background-position: -1665px 0;
}
.flag.fm {
    height: 11px;
    background-position: -1687px 0;
}
.flag.fo {
    height: 15px;
    background-position: -1709px 0;
}
.flag.fr {
    height: 14px;
    background-position: -1731px 0;
}
.flag.ga {
    height: 15px;
    background-position: -1753px 0;
}
.flag.gb {
    height: 10px;
    background-position: -1775px 0;
}
.flag.gd {
    height: 12px;
    background-position: -1797px 0;
}
.flag.ge,
.flag.gf,
.flag.gg,
.flag.gh {
    height: 14px;
}
.flag.ge {
    background-position: -1819px 0;
}
.flag.gf {
    background-position: -1841px 0;
}
.flag.gg {
    background-position: -1863px 0;
}
.flag.gh {
    background-position: -1885px 0;
}
.flag.gi {
    height: 10px;
    background-position: -1907px 0;
}
.flag.gl,
.flag.gm,
.flag.gn,
.flag.gp,
.flag.gq,
.flag.gr {
    height: 14px;
}
.flag.gl {
    background-position: -1929px 0;
}
.flag.gm {
    background-position: -1951px 0;
}
.flag.gn {
    background-position: -1973px 0;
}
.flag.gp {
    background-position: -1995px 0;
}
.flag.gq {
    background-position: -2017px 0;
}
.flag.gr {
    background-position: -2039px 0;
}
.flag.gs {
    height: 10px;
    background-position: -2061px 0;
}
.flag.gt {
    height: 13px;
    background-position: -2083px 0;
}
.flag.gu {
    height: 11px;
    background-position: -2105px 0;
}
.flag.gw {
    height: 10px;
    background-position: -2127px 0;
}
.flag.gy {
    height: 12px;
    background-position: -2149px 0;
}
.flag.hk {
    height: 14px;
    background-position: -2171px 0;
}
.flag.hm {
    height: 10px;
    background-position: -2193px 0;
}
.flag.hn {
    height: 10px;
    background-position: -2215px 0;
}
.flag.hr {
    height: 10px;
    background-position: -2237px 0;
}
.flag.ht {
    height: 12px;
    background-position: -2259px 0;
}
.flag.hu {
    height: 10px;
    background-position: -2281px 0;
}
.flag.ic {
    height: 14px;
    background-position: -2303px 0;
}
.flag.id {
    height: 14px;
    background-position: -2325px 0;
}
.flag.ie {
    height: 10px;
    background-position: -2347px 0;
}
.flag.il {
    height: 15px;
    background-position: -2369px 0;
}
.flag.im {
    height: 10px;
    background-position: -2391px 0;
}
.flag.in {
    height: 14px;
    background-position: -2413px 0;
}
.flag.io {
    height: 10px;
    background-position: -2435px 0;
}
.flag.iq {
    height: 14px;
    background-position: -2457px 0;
}
.flag.ir {
    height: 12px;
    background-position: -2479px 0;
}
.flag.is {
    height: 15px;
    background-position: -2501px 0;
}
.flag.it {
    height: 14px;
    background-position: -2523px 0;
}
.flag.je {
    height: 12px;
    background-position: -2545px 0;
}
.flag.jm {
    height: 10px;
    background-position: -2567px 0;
}
.flag.jo {
    height: 10px;
    background-position: -2589px 0;
}
.flag.jp {
    height: 14px;
    background-position: -2611px 0;
}
.flag.ke {
    height: 14px;
    background-position: -2633px 0;
}
.flag.kg {
    height: 12px;
    background-position: -2655px 0;
}
.flag.kh {
    height: 13px;
    background-position: -2677px 0;
}
.flag.ki {
    height: 10px;
    background-position: -2699px 0;
}
.flag.km {
    height: 12px;
    background-position: -2721px 0;
}
.flag.kn {
    height: 14px;
    background-position: -2743px 0;
}
.flag.kp {
    height: 10px;
    background-position: -2765px 0;
}
.flag.kr {
    height: 14px;
    background-position: -2787px 0;
}
.flag.kw {
    height: 10px;
    background-position: -2809px 0;
}
.flag.ky {
    height: 10px;
    background-position: -2831px 0;
}
.flag.kz {
    height: 10px;
    background-position: -2853px 0;
}
.flag.la {
    height: 14px;
    background-position: -2875px 0;
}
.flag.lb {
    height: 14px;
    background-position: -2897px 0;
}
.flag.lc {
    height: 10px;
    background-position: -2919px 0;
}
.flag.li {
    height: 12px;
    background-position: -2941px 0;
}
.flag.lk {
    height: 10px;
    background-position: -2963px 0;
}
.flag.lr {
    height: 11px;
    background-position: -2985px 0;
}
.flag.ls {
    height: 14px;
    background-position: -3007px 0;
}
.flag.lt {
    height: 12px;
    background-position: -3029px 0;
}
.flag.lu {
    height: 12px;
    background-position: -3051px 0;
}
.flag.lv {
    height: 10px;
    background-position: -3073px 0;
}
.flag.ly {
    height: 10px;
    background-position: -3095px 0;
}
.flag.ma {
    height: 14px;
    background-position: -3117px 0;
}
.flag.mc {
    height: 15px;
    background-position: -3139px 0;
}
.flag.md {
    height: 10px;
    background-position: -3160px 0;
}
.flag.me {
    height: 10px;
    background-position: -3182px 0;
}
.flag.mf {
    height: 14px;
    background-position: -3204px 0;
}
.flag.mg {
    height: 14px;
    background-position: -3226px 0;
}
.flag.mh {
    height: 11px;
    background-position: -3248px 0;
}
.flag.mk {
    height: 10px;
    background-position: -3270px 0;
}
.flag.ml {
    height: 14px;
    background-position: -3292px 0;
}
.flag.mm {
    height: 14px;
    background-position: -3314px 0;
}
.flag.mn {
    height: 10px;
    background-position: -3336px 0;
}
.flag.mo {
    height: 14px;
    background-position: -3358px 0;
}
.flag.mp {
    height: 10px;
    background-position: -3380px 0;
}
.flag.mq {
    height: 14px;
    background-position: -3402px 0;
}
.flag.mr {
    height: 14px;
    background-position: -3424px 0;
}
.flag.ms {
    height: 10px;
    background-position: -3446px 0;
}
.flag.mt,
.flag.mu,
.flag.mv,
.flag.mw {
    height: 14px;
}
.flag.mt {
    background-position: -3468px 0;
}
.flag.mu {
    background-position: -3490px 0;
}
.flag.mv {
    background-position: -3512px 0;
}
.flag.mw {
    background-position: -3534px 0;
}
.flag.mx {
    height: 12px;
    background-position: -3556px 0;
}
.flag.my {
    height: 10px;
    background-position: -3578px 0;
}
.flag.mz {
    height: 14px;
    background-position: -3600px 0;
}
.flag.na {
    height: 14px;
    background-position: -3622px 0;
}
.flag.nc {
    height: 10px;
    background-position: -3644px 0;
}
.flag.ne {
    height: 15px;
    background-position: -3666px 0;
}
.flag.nf {
    height: 10px;
    background-position: -3686px 0;
}
.flag.ng {
    height: 10px;
    background-position: -3708px 0;
}
.flag.ni {
    height: 12px;
    background-position: -3730px 0;
}
.flag.nl {
    height: 14px;
    background-position: -3752px 0;
}
.flag.no {
    height: 15px;
    background-position: -3774px 0;
}
.flag.np {
    height: 15px;
    background-position: -3796px 0;
}
.flag.nr,
.flag.nu,
.flag.nz,
.flag.om {
    height: 10px;
}
.flag.nr {
    background-position: -3811px 0;
}
.flag.nu {
    background-position: -3833px 0;
}
.flag.nz {
    background-position: -3855px 0;
}
.flag.om {
    background-position: -3877px 0;
}
.flag.pa {
    height: 14px;
    background-position: -3899px 0;
}
.flag.pe {
    height: 14px;
    background-position: -3921px 0;
}
.flag.pf {
    height: 14px;
    background-position: -3943px 0;
}
.flag.pg {
    height: 15px;
    background-position: -3965px 0;
}
.flag.ph {
    height: 10px;
    background-position: -3987px 0;
}
.flag.pk {
    height: 14px;
    background-position: -4009px 0;
}
.flag.pl {
    height: 13px;
    background-position: -4031px 0;
}
.flag.pm {
    height: 14px;
    background-position: -4053px 0;
}
.flag.pn {
    height: 10px;
    background-position: -4075px 0;
}
.flag.pr {
    height: 14px;
    background-position: -4097px 0;
}
.flag.ps {
    height: 10px;
    background-position: -4119px 0;
}
.flag.pt {
    height: 14px;
    background-position: -4141px 0;
}
.flag.pw {
    height: 13px;
    background-position: -4163px 0;
}
.flag.py {
    height: 11px;
    background-position: -4185px 0;
}
.flag.qa {
    height: 8px;
    background-position: -4207px 0;
}
.flag.re,
.flag.ro,
.flag.rs,
.flag.ru,
.flag.rw,
.flag.sa {
    height: 14px;
}
.flag.re {
    background-position: -4229px 0;
}
.flag.ro {
    background-position: -4251px 0;
}
.flag.rs {
    background-position: -4273px 0;
}
.flag.ru {
    background-position: -4295px 0;
}
.flag.rw {
    background-position: -4317px 0;
}
.flag.sa {
    background-position: -4339px 0;
}
.flag.sb {
    height: 10px;
    background-position: -4361px 0;
}
.flag.sc {
    height: 10px;
    background-position: -4383px 0;
}
.flag.sd {
    height: 10px;
    background-position: -4405px 0;
}
.flag.se {
    height: 13px;
    background-position: -4427px 0;
}
.flag.sg {
    height: 14px;
    background-position: -4449px 0;
}
.flag.sh {
    height: 10px;
    background-position: -4471px 0;
}
.flag.si {
    height: 10px;
    background-position: -4493px 0;
}
.flag.sj {
    height: 15px;
    background-position: -4515px 0;
}
.flag.sk {
    height: 14px;
    background-position: -4537px 0;
}
.flag.sl {
    height: 14px;
    background-position: -4559px 0;
}
.flag.sm {
    height: 15px;
    background-position: -4581px 0;
}
.flag.sn {
    height: 14px;
    background-position: -4603px 0;
}
.flag.so {
    height: 14px;
    background-position: -4625px 0;
}
.flag.sr {
    height: 14px;
    background-position: -4647px 0;
}
.flag.ss {
    height: 10px;
    background-position: -4669px 0;
}
.flag.st {
    height: 10px;
    background-position: -4691px 0;
}
.flag.sv {
    height: 12px;
    background-position: -4713px 0;
}
.flag.sx {
    height: 14px;
    background-position: -4735px 0;
}
.flag.sy {
    height: 14px;
    background-position: -4757px 0;
}
.flag.sz {
    height: 14px;
    background-position: -4779px 0;
}
.flag.ta {
    height: 10px;
    background-position: -4801px 0;
}
.flag.tc {
    height: 10px;
    background-position: -4823px 0;
}
.flag.td {
    height: 14px;
    background-position: -4845px 0;
}
.flag.tf {
    height: 14px;
    background-position: -4867px 0;
}
.flag.tg {
    height: 13px;
    background-position: -4889px 0;
}
.flag.th {
    height: 14px;
    background-position: -4911px 0;
}
.flag.tj {
    height: 10px;
    background-position: -4933px 0;
}
.flag.tk {
    height: 10px;
    background-position: -4955px 0;
}
.flag.tl {
    height: 10px;
    background-position: -4977px 0;
}
.flag.tm {
    height: 14px;
    background-position: -4999px 0;
}
.flag.tn {
    height: 14px;
    background-position: -5021px 0;
}
.flag.to {
    height: 10px;
    background-position: -5043px 0;
}
.flag.tr {
    height: 14px;
    background-position: -5065px 0;
}
.flag.tt {
    height: 12px;
    background-position: -5087px 0;
}
.flag.tv {
    height: 10px;
    background-position: -5109px 0;
}
.flag.tw,
.flag.tz,
.flag.ua,
.flag.ug {
    height: 14px;
}
.flag.tw {
    background-position: -5131px 0;
}
.flag.tz {
    background-position: -5153px 0;
}
.flag.ua {
    background-position: -5175px 0;
}
.flag.ug {
    background-position: -5197px 0;
}
.flag.um {
    height: 11px;
    background-position: -5219px 0;
}
.flag.us {
    height: 11px;
    background-position: -5241px 0;
}
.flag.uy {
    height: 14px;
    background-position: -5263px 0;
}
.flag.uz {
    height: 10px;
    background-position: -5285px 0;
}
.flag.va {
    height: 15px;
    background-position: -5307px 0;
}
.flag.vc {
    height: 14px;
    background-position: -5324px 0;
}
.flag.ve {
    height: 14px;
    background-position: -5346px 0;
}
.flag.vg {
    height: 10px;
    background-position: -5368px 0;
}
.flag.vi {
    height: 14px;
    background-position: -5390px 0;
}
.flag.vn {
    height: 14px;
    background-position: -5412px 0;
}
.flag.vu {
    height: 12px;
    background-position: -5434px 0;
}
.flag.wf {
    height: 14px;
    background-position: -5456px 0;
}
.flag.ws {
    height: 10px;
    background-position: -5478px 0;
}
.flag.xk {
    height: 15px;
    background-position: -5500px 0;
}
.flag.ye,
.flag.yt,
.flag.za,
.flag.zm {
    height: 14px;
}
.flag.ye {
    background-position: -5522px 0;
}
.flag.yt {
    background-position: -5544px 0;
}
.flag.za {
    background-position: -5566px 0;
}
.flag.zm {
    background-position: -5588px 0;
}
.flag.zw {
    height: 10px;
    background-position: -5610px 0;
}
.more-stories-section {
    width: 100%;
    min-height: 300px;
    background: #fff;
    margin-top: 50px;
    margin-bottom: 80px;
    max-width: 100%;
    font-size: 0;
    overflow: hidden;
    position: relative;
    display: inline-block;
}
.more-stories-section.project {
    margin-bottom: 0;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}
.more-stories-section.vid {
    margin: 0;
    padding: 60px 0;
    background: #000;
}
.more-stories-section.vid .wrap-list .list-item .box-text {
    color: #fff;
}
.more-stories-section .title {
    font-size: 18px;
    line-height: 20px;
    margin-bottom: 60px;
    text-align: center;
}
.chn .more-stories-section .title {
    font-size: 12px;
}
.more-stories-section .wrap-list {
    max-width: 1090px;
    padding: 0 60px;
    width: 100%;
    margin: auto;
    display: flex;
    flex-flow: column;
}
.more-stories-section .wrap-list.vid {
    max-width: 1280px;
}
.more-stories-section .wrap-list.vid .list-item:last-child {
    margin-bottom: 0;
}
.more-stories-section .wrap-list .list-item {
    align-items: center;
    display: flex;
    flex-flow: row nowrap;
    margin-bottom: 40px;
}
.more-stories-section .wrap-list .list-item.inviewport .box-text,
.more-stories-section .wrap-list .list-item.inviewport .wrap-img {
    opacity: 1;
    transform: none;
}
.more-stories-section .wrap-list .list-item .wrap-img {
    cursor: pointer;
    margin-right: 60px;
    max-width: calc(35% - 60px);
    min-width: 240px;
    position: relative;
    transform: translate(-100%, 25%);
    transition: all 1s;
    opacity: 0;
}
.more-stories-section .wrap-list .list-item .wrap-img.project:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    z-index: 0;
}
.more-stories-section .wrap-list .list-item .wrap-img:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 2;
}
.more-stories-section .wrap-list .list-item .wrap-img .wrap-brand {
    position: absolute;
    text-align: right;
    width: 100%;
    right: 20px;
    top: 20px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.more-stories-section .wrap-list .list-item .wrap-img .wrap-brand .brand {
    max-width: 75px;
    max-height: 50px;
    z-index: 1;
    width: auto;
}
.more-stories-section .wrap-list .list-item .wrap-img .play-ic {
    background: url(../images/sprite.svg) -99px -240px no-repeat;
    width: 48px;
    height: 48px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 2;
}
.more-stories-section .wrap-list .list-item .wrap-img:hover:after {
    opacity: 1;
}
.more-stories-section .wrap-list .list-item .wrap-img:hover.cover:after {
    background: rgba(0, 0, 0, 0.5);
}
.more-stories-section .wrap-list .list-item .wrap-img.promo {
    max-width: calc(50% - 60px);
}
.more-stories-section .wrap-list .list-item .wrap-img.cover {
    max-width: calc(50% - 60px);
    min-width: 384px;
}
.more-stories-section .wrap-list .list-item .wrap-img.cover:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 1;
    height: 100%;
    z-index: 1;
    background: rgba(0, 0, 0, 0.4);
}
.more-stories-section .wrap-list .list-item .wrap-img img {
    width: 100%;
}
.more-stories-section .wrap-list .list-item .box-text {
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    max-width: 65%;
    transform: translate(100%, 50%);
    opacity: 0;
    transition: all 1s;
}
.more-stories-section .wrap-list .list-item .box-text.cover,
.more-stories-section .wrap-list .list-item .box-text.promo {
    max-width: 50%;
}
.more-stories-section .wrap-list .list-item .box-text .text-cate {
    display: flex;
    align-items: center;
    font-size: 18px;
    line-height: 20px;
    margin-bottom: 20px;
}
.chn .more-stories-section .wrap-list .list-item .box-text .text-cate {
    font-size: 12px;
}
.more-stories-section .wrap-list .list-item .box-text .text-cate .dot {
    margin-left: 5px;
    margin-right: 5px;
    width: 3px;
    height: 3px;
    background: #9b9b9b;
    border-radius: 3px;
}
.more-stories-section .wrap-list .list-item .box-text .text-cate span {
    color: #9b9b9b;
}
.more-stories-section .wrap-list .list-item .box-text .text-title {
    max-width: 420px;
    cursor: pointer;
    display: -webkit-box;
    max-height: 68px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    visibility: visible;
    text-overflow: ellipsis;
    margin-bottom: 20px;
    font-size: 32px;
    line-height: 34px;
}
.chn .more-stories-section .wrap-list .list-item .box-text .text-title {
    font-size: 21px;
}
.more-stories-section .wrap-list .list-item .box-text .wrap-desc {
    margin-bottom: 20px;
}
.more-stories-section .wrap-list .list-item .box-text .wrap-desc.nomargin {
    margin-bottom: 0;
}
.more-stories-section .wrap-list .list-item .box-text .wrap-desc .desc {
    display: flex;
    margin-bottom: 8px;
}
.more-stories-section .wrap-list .list-item .box-text .wrap-desc .desc.nomargin {
    margin-bottom: 0;
}
.more-stories-section .wrap-list .list-item .box-text .wrap-desc .desc .ic {
    min-width: 22px;
    height: 20px;
    background: url(../images/sprite.svg) no-repeat;
    margin-right: 10px;
}
.more-stories-section .wrap-list .list-item .box-text .wrap-desc .desc .ic.loc {
    background-position: -114px -6px;
}
.more-stories-section .wrap-list .list-item .box-text .wrap-desc .desc .ic.park {
    background-position: -88px -6px;
}
.more-stories-section .wrap-list .list-item .box-text .wrap-desc .desc .ic.room {
    height: 16px;
    background-position: -141px -11px;
}
.more-stories-section .wrap-list .list-item .box-text .wrap-desc .desc .ic.express {
    background-position: -88px -32px;
}
.more-stories-section .wrap-list .list-item .box-text .wrap-desc .desc .ic.interior {
    background-position: -114px -32px;
}
.more-stories-section .wrap-list .list-item .box-text .wrap-desc .desc .ic.package {
    background-position: -139px -32px;
}
.more-stories-section .wrap-list .list-item .box-text .wrap-desc .desc .ic.train {
    background-position: -167px -8px;
}
.more-stories-section .wrap-list .list-item .box-text .wrap-desc .desc .ic.discount {
    height: 20px;
    background-position: -170px -32px;
}
.more-stories-section .wrap-list .list-item .box-text .wrap-desc .desc .text {
    max-width: 420px;
    font-size: 22px;
    line-height: 22px;
    display: -webkit-box;
    max-height: 66px;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    visibility: visible;
    text-overflow: ellipsis;
}
.chn .more-stories-section .wrap-list .list-item .box-text .wrap-desc .desc .text {
    font-size: 15px;
}
.more-stories-section .wrap-list .list-item .box-text .wrap-desc .desc .text.ks {
    padding-left: 1px;
    display: -webkit-box;
    max-height: 44px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    visibility: visible;
    text-overflow: ellipsis;
}
.more-stories-section .wrap-list .list-item .box-text .price {
    font-size: 22px;
    line-height: 22px;
}
.chn .more-stories-section .wrap-list .list-item .box-text .price {
    font-size: 15px;
}
.more-stories-section .wrap-list .list-item .box-text .price.by {
    margin-bottom: 5px;
    font-size: 18px;
    line-height: 20px;
}
.chn .more-stories-section .wrap-list .list-item .box-text .price.by {
    font-size: 12px;
}
@media (max-width: 767px) {
    .more-stories-section {
        margin-bottom: 10px;
    }
    .more-stories-section.project {
        padding-bottom: 10px;
    }
    .more-stories-section .wrap-list {
        padding: 0 15px;
    }
    .more-stories-section .wrap-list .list-item .wrap-img {
        margin-right: 15px;
        max-width: 30%;
        min-width: unset;
    }
    .more-stories-section .wrap-list .list-item .wrap-img.cover,
    .more-stories-section .wrap-list .list-item .wrap-img.promo {
        max-width: 45%;
        min-width: unset;
    }
    .more-stories-section .wrap-list .list-item .wrap-img .wrap-brand {
        right: 10px;
        top: 10px;
    }
    .more-stories-section .wrap-list .list-item .wrap-img .wrap-brand .brand {
        transform: scale(0.75) translate(25%, -25%);
    }
    .more-stories-section .wrap-list .list-item .box-text {
        max-width: calc(70% - 15px);
    }
    .more-stories-section .wrap-list .list-item .box-text.cover,
    .more-stories-section .wrap-list .list-item .box-text.promo {
        max-width: calc(55% - 15px);
    }
    .more-stories-section .wrap-list .list-item .box-text .text-title {
        font-size: 24px;
        line-height: 27px;
        margin-bottom: 5px;
    }
    .chn .more-stories-section .wrap-list .list-item .box-text .text-title {
        font-size: 16px;
    }
    .more-stories-section .wrap-list .list-item .box-text .text-cate {
        margin-bottom: 10px;
    }
    .more-stories-section .wrap-list .list-item .box-text .desc .text {
        font-size: 19px;
        line-height: 19px;
    }
    .chn .more-stories-section .wrap-list .list-item .box-text .desc .text {
        font-size: 13px;
    }
    .more-stories-section .wrap-list .list-item .box-text .price {
        font-size: 19px;
        line-height: 19px;
    }
    .chn .more-stories-section .wrap-list .list-item .box-text .price {
        font-size: 13px;
    }
}
@media (max-width: 550px) {
    .more-stories-section .wrap-list .list-item .wrap-img .play-ic {
        transform: translate(-50%, -50%) scale(0.5);
    }
    .more-stories-section .wrap-list .list-item .wrap-img .wrap-brand .brand {
        transform: scale(0.5) translate(50%, -50%);
    }
}
.ui-helper-hidden {
    display: none;
}
.ui-helper-hidden-accessible {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}
.ui-helper-reset {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    line-height: 1.3;
    text-decoration: none;
    font-size: 100%;
    list-style: none;
}
.ui-helper-clearfix:before,
.ui-helper-clearfix:after {
    content: "";
    display: table;
    border-collapse: collapse;
}
.ui-helper-clearfix:after {
    clear: both;
}
.ui-helper-zfix {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    opacity: 0;
    filter: Alpha(Opacity=0);
}
.ui-front {
    z-index: 100;
}
.ui-state-disabled {
    cursor: default !important;
    pointer-events: none;
}
.ui-icon {
    display: inline-block;
    vertical-align: middle;
    margin-top: -0.25em;
    position: relative;
    text-indent: -99999px;
    overflow: hidden;
    background-repeat: no-repeat;
}
.ui-widget-icon-block {
    left: 50%;
    margin-left: -8px;
    display: block;
}
.ui-widget-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.ui-accordion .ui-accordion-header {
    display: block;
    cursor: pointer;
    position: relative;
    margin: 2px 0 0 0;
    padding: 0.5em 0.5em 0.5em 0.7em;
    font-size: 100%;
}
.ui-accordion .ui-accordion-content {
    padding: 1em 2.2em;
    border-top: 0;
    overflow: auto;
}
.ui-autocomplete {
    position: absolute;
    top: 0;
    left: 0;
    cursor: default;
}
.ui-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: block;
    outline: 0;
}
.ui-menu .ui-menu {
    position: absolute;
}
.ui-menu .ui-menu-item {
    margin: 0;
    cursor: pointer;
    list-style-image: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7");
}
.ui-menu .ui-menu-item-wrapper {
    position: relative;
    padding: 3px 1em 3px 0.4em;
}
.ui-menu .ui-menu-divider {
    margin: 5px 0;
    height: 0;
    font-size: 0;
    line-height: 0;
    border-width: 1px 0 0 0;
}
.ui-menu-icons {
    position: relative;
}
.ui-menu-icons .ui-menu-item-wrapper {
    padding-left: 2em;
}
.ui-menu .ui-icon {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0.2em;
    margin: auto 0;
}
.ui-menu .ui-menu-icon {
    left: auto;
    right: 0;
}
.ui-button {
    padding: 0.4em 1em;
    display: inline-block;
    position: relative;
    line-height: normal;
    margin-right: 0.1em;
    cursor: pointer;
    vertical-align: middle;
    text-align: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    overflow: visible;
}
.ui-button,
.ui-button:link,
.ui-button:visited,
.ui-button:hover,
.ui-button:active {
    text-decoration: none;
}
.ui-button-icon-only {
    width: 2em;
    box-sizing: border-box;
    text-indent: -9999px;
    white-space: nowrap;
}
input.ui-button.ui-button-icon-only {
    text-indent: 0;
}
.ui-button-icon-only .ui-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -8px;
    margin-left: -8px;
}
.ui-button.ui-icon-notext .ui-icon {
    padding: 0;
    width: 2.1em;
    height: 2.1em;
    text-indent: -9999px;
    white-space: nowrap;
}
input.ui-button.ui-icon-notext .ui-icon {
    width: auto;
    height: auto;
    text-indent: 0;
    white-space: normal;
    padding: 0.4em 1em;
}
input.ui-button::-moz-focus-inner,
button.ui-button::-moz-focus-inner {
    border: 0;
    padding: 0;
}
.ui-controlgroup {
    vertical-align: middle;
    display: inline-block;
}
.ui-controlgroup > .ui-controlgroup-item {
    float: left;
    margin-left: 0;
    margin-right: 0;
}
.ui-controlgroup > .ui-controlgroup-item:focus,
.ui-controlgroup > .ui-controlgroup-item.ui-visual-focus {
    z-index: 9999;
}
.ui-controlgroup-vertical > .ui-controlgroup-item {
    display: block;
    float: none;
    width: 100%;
    margin-top: 0;
    margin-bottom: 0;
    text-align: left;
}
.ui-controlgroup-vertical .ui-controlgroup-item {
    box-sizing: border-box;
}
.ui-controlgroup .ui-controlgroup-label {
    padding: 0.4em 1em;
}
.ui-controlgroup .ui-controlgroup-label span {
    font-size: 80%;
}
.ui-controlgroup-horizontal .ui-controlgroup-label + .ui-controlgroup-item {
    border-left: none;
}
.ui-controlgroup-vertical .ui-controlgroup-label + .ui-controlgroup-item {
    border-top: none;
}
.ui-controlgroup-horizontal .ui-controlgroup-label.ui-widget-content {
    border-right: none;
}
.ui-controlgroup-vertical .ui-controlgroup-label.ui-widget-content {
    border-bottom: none;
}
.ui-controlgroup-vertical .ui-spinner-input {
    width: 75%;
    width: calc(100% - 2.4em);
}
.ui-controlgroup-vertical .ui-spinner .ui-spinner-up {
    border-top-style: solid;
}
.ui-dialog .ui-dialog-titlebar {
    padding: 0.4em 1em;
    position: relative;
}
.ui-dialog .ui-dialog-title {
    float: left;
    margin: 0.1em 0;
    white-space: nowrap;
    width: 90%;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ui-dialog .ui-dialog-titlebar-close {
    position: absolute;
    right: 0.3em;
    top: 50%;
    width: 20px;
    margin: -10px 0 0 0;
    padding: 1px;
    height: 20px;
}
.ui-dialog .ui-dialog-content {
    position: relative;
    border: 0;
    padding: 0.5em 1em;
    background: none;
    overflow: auto;
}
.ui-dialog .ui-dialog-buttonpane {
    text-align: left;
    border-width: 1px 0 0 0;
    background-image: none;
    margin-top: 0.5em;
    padding: 0.3em 1em 0.5em 0.4em;
}
.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
    float: right;
}
.ui-dialog .ui-dialog-buttonpane button {
    margin: 0.5em 0.4em 0.5em 0;
    cursor: pointer;
}
.ui-dialog .ui-resizable-n {
    height: 2px;
    top: 0;
}
.ui-dialog .ui-resizable-e {
    width: 2px;
    right: 0;
}
.ui-dialog .ui-resizable-s {
    height: 2px;
    bottom: 0;
}
.ui-dialog .ui-resizable-w {
    width: 2px;
    left: 0;
}
.ui-dialog .ui-resizable-se,
.ui-dialog .ui-resizable-sw,
.ui-dialog .ui-resizable-ne,
.ui-dialog .ui-resizable-nw {
    width: 7px;
    height: 7px;
}
.ui-dialog .ui-resizable-se {
    right: 0;
    bottom: 0;
}
.ui-dialog .ui-resizable-sw {
    left: 0;
    bottom: 0;
}
.ui-dialog .ui-resizable-ne {
    right: 0;
    top: 0;
}
.ui-dialog .ui-resizable-nw {
    left: 0;
    top: 0;
}
.ui-draggable .ui-dialog-titlebar {
    cursor: move;
}
.ui-draggable-handle {
    -ms-touch-action: none;
    touch-action: none;
}
.ui-resizable {
    position: relative;
}
.ui-resizable-handle {
    position: absolute;
    font-size: 0.1px;
    display: block;
    -ms-touch-action: none;
    touch-action: none;
}
.ui-resizable-disabled .ui-resizable-handle,
.ui-resizable-autohide .ui-resizable-handle {
    display: none;
}
.ui-resizable-n {
    cursor: n-resize;
    height: 7px;
    width: 100%;
    top: -5px;
    left: 0;
}
.ui-resizable-s {
    cursor: s-resize;
    height: 7px;
    width: 100%;
    bottom: -5px;
    left: 0;
}
.ui-resizable-e {
    cursor: e-resize;
    width: 7px;
    right: -5px;
    top: 0;
    height: 100%;
}
.ui-resizable-w {
    cursor: w-resize;
    width: 7px;
    left: -5px;
    top: 0;
    height: 100%;
}
.ui-resizable-se {
    cursor: se-resize;
    width: 12px;
    height: 12px;
    right: 1px;
    bottom: 1px;
}
.ui-resizable-sw {
    cursor: sw-resize;
    width: 9px;
    height: 9px;
    left: -5px;
    bottom: -5px;
}
.ui-resizable-nw {
    cursor: nw-resize;
    width: 9px;
    height: 9px;
    left: -5px;
    top: -5px;
}
.ui-resizable-ne {
    cursor: ne-resize;
    width: 9px;
    height: 9px;
    right: -5px;
    top: -5px;
}
.ui-progressbar {
    height: 2em;
    text-align: left;
    overflow: hidden;
}
.ui-progressbar .ui-progressbar-value {
    margin: -1px;
    height: 100%;
}
.ui-selectable-helper {
    position: absolute;
    z-index: 100;
    border: 1px dotted black;
}
.ui-selectmenu-menu {
    padding: 0;
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
    display: none;
}
.ui-selectmenu-menu .ui-menu {
    overflow: auto;
    overflow-x: hidden;
    padding-bottom: 1px;
}
.ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup {
    font-size: 1em;
    font-weight: bold;
    line-height: 1.5;
    padding: 2px 0.4em;
    margin: 0.5em 0 0 0;
    height: auto;
    border: 0;
}
.ui-selectmenu-open {
    display: block;
}
.ui-selectmenu-text {
    display: block;
    margin-right: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ui-selectmenu-button.ui-button {
    text-align: left;
    white-space: nowrap;
    width: 14em;
}
.ui-selectmenu-icon.ui-icon {
    float: right;
    margin-top: 0;
}
.ui-slider {
    position: relative;
    text-align: left;
}
.ui-slider .ui-slider-handle {
    position: absolute;
    z-index: 2;
    width: 1.2em;
    height: 1.2em;
    cursor: default;
    -ms-touch-action: none;
    touch-action: none;
}
.ui-slider .ui-slider-range {
    position: absolute;
    z-index: 1;
    font-size: 0.7em;
    display: block;
    border: 0;
    background-position: 0 0;
}
.ui-slider.ui-state-disabled .ui-slider-handle,
.ui-slider.ui-state-disabled .ui-slider-range {
    filter: inherit;
}
.ui-slider-horizontal {
    height: 0.8em;
}
.ui-slider-horizontal .ui-slider-handle {
    top: -0.3em;
    margin-left: -0.6em;
}
.ui-slider-horizontal .ui-slider-range {
    top: 0;
    height: 100%;
}
.ui-slider-horizontal .ui-slider-range-min {
    left: 0;
}
.ui-slider-horizontal .ui-slider-range-max {
    right: 0;
}
.ui-slider-vertical {
    width: 0.8em;
    height: 100px;
}
.ui-slider-vertical .ui-slider-handle {
    left: -0.3em;
    margin-left: 0;
    margin-bottom: -0.6em;
}
.ui-slider-vertical .ui-slider-range {
    left: 0;
    width: 100%;
}
.ui-slider-vertical .ui-slider-range-min {
    bottom: 0;
}
.ui-slider-vertical .ui-slider-range-max {
    top: 0;
}
.ui-sortable-handle {
    -ms-touch-action: none;
    touch-action: none;
}
.ui-spinner {
    position: relative;
    display: inline-block;
    overflow: hidden;
    padding: 0;
    vertical-align: middle;
}
.ui-spinner-input {
    border: none;
    background: none;
    color: inherit;
    padding: 0.222em 0;
    margin: 0.2em 0;
    vertical-align: middle;
    margin-left: 0.4em;
    margin-right: 2em;
}
.ui-spinner-button {
    width: 1.6em;
    height: 50%;
    font-size: 0.5em;
    padding: 0;
    margin: 0;
    text-align: center;
    position: absolute;
    cursor: default;
    display: block;
    overflow: hidden;
    right: 0;
}
.ui-spinner a.ui-spinner-button {
    border-top-style: none;
    border-bottom-style: none;
    border-right-style: none;
}
.ui-spinner-up {
    top: 0;
}
.ui-spinner-down {
    bottom: 0;
}
.ui-tabs {
    position: relative;
    padding: 0.2em;
}
.ui-tabs .ui-tabs-nav {
    margin: 0;
    padding: 0.2em 0.2em 0;
}
.ui-tabs .ui-tabs-nav li {
    list-style: none;
    float: left;
    position: relative;
    top: 0;
    margin: 1px 0.2em 0 0;
    border-bottom-width: 0;
    padding: 0;
    white-space: nowrap;
}
.ui-tabs .ui-tabs-nav .ui-tabs-anchor {
    float: left;
    padding: 0.5em 1em;
    text-decoration: none;
}
.ui-tabs .ui-tabs-nav li.ui-tabs-active {
    margin-bottom: -1px;
    padding-bottom: 1px;
}
.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor {
    cursor: text;
}
.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor {
    cursor: pointer;
}
.ui-tabs .ui-tabs-panel {
    display: block;
    border-width: 0;
    padding: 1em 1.4em;
    background: none;
}
.ui-tooltip {
    padding: 8px;
    position: absolute;
    z-index: 9999;
    max-width: 300px;
}
body .ui-tooltip {
    border-width: 2px;
}
.ui-widget {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1em;
}
.ui-widget .ui-widget {
    font-size: 1em;
}
.ui-widget input,
.ui-widget select,
.ui-widget textarea,
.ui-widget button {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1em;
}
.ui-widget.ui-widget-content {
    border: 1px solid #c5c5c5;
}
.ui-widget-content {
    border: 1px solid #ddd;
    background: #fff;
    color: #333;
}
.ui-widget-content a {
    color: #333;
}
.ui-widget-header {
    border: 1px solid #ddd;
    background: #e9e9e9;
    color: #333;
    font-weight: bold;
}
.ui-widget-header a {
    color: #333;
}
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
    border: 1px solid #c5c5c5;
    background: #f6f6f6;
    font-weight: normal;
    color: #454545;
}
.ui-state-default a,
.ui-state-default a:link,
.ui-state-default a:visited,
a.ui-button,
a:link.ui-button,
a:visited.ui-button,
.ui-button {
    color: #454545;
    text-decoration: none;
}
