/* ----進站畫面---- */

.web_view {
    width: 100%;
    height: 100vh;
    position: relative;
    background: #26bd94;
}

/* ----進站畫面-背景---- */

.web_view::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    background: url("/static/freetrial/images/top_view_bg.de9796a18a27.png") no-repeat 50% 0;
    background-size: auto 100%;
}

.web_view::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    background: url("/static/freetrial/images/top_view_bg2.47c5b98e273e.png") repeat-x 0 0;
    background-size: auto 100%;
    opacity: .85;
}

/* ----進站畫面-主標---- */

.web_view .title {
    width: 480px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    z-index: 5;
    overflow: hidden;
}

.web_view .title::before {
    content: '';
    width: 0;
    height: 100%;
    display: inline-block;
    vertical-align: middle;
}

.web_view .title>div {
    display: inline-block;
    vertical-align: middle;
}

.web_view .title img {
    width: 100%;
    margin-bottom: 16px;
}

.web_view .title .text {
    width: 100%;
    margin-bottom: 48px;
}

.web_view .title .text h1 {
    height: 48px;
    overflow: hidden;
    text-align: center;
}

.web_view .title .text h1 a {
    font-size: 36px;
    letter-spacing: 3px;
    line-height: 48px;
    color: #fff;
    text-shadow: 1px 1px .5px #232323;
    overflow: hidden;
}

.web_view .title .more {
    width: 108px;
    height: 108px;
    position: absolute;
    right: 0;
    left: 0;
    bottom: 20%;
    margin: auto;
    background: #ecd900;
    border-radius: 50%;
    text-align: center;
    cursor: pointer;
    animation: move .6s .5s infinite alternate both;
}

@keyframes move {
    0% {
        transform: scale(1);
        box-shadow: 0 0 5px 2px rgba(0, 0, 0, .2);
    }
    90% {
        transform: scale(1.1);
        box-shadow: 0 0 12px 3px rgba(0, 0, 0, .3);
    }
    100% {
        transform: scale(1.1);
        box-shadow: 0 0 12px 3px rgba(0, 0, 0, .3);
    }
}

.web_view .title .more::before {
    content: '';
    width: 85%;
    height: 85%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    background: #ffed21;
    border-radius: 50%;
}

.web_view .title .more::after {
    content: '';
    width: 0;
    height: 100%;
    display: inline-block;
    vertical-align: middle;
}

.web_view .title .more>span {
    width: 2px;
    height: 300%;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    margin: auto;
    background: #ffed21;
}

.web_view .title .more>div {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    z-index: 2;
}

.web_view .title .more>div::after {
    content: '';
    width: 12px;
    height: 12px;
    display: inline-block;
    border-left: 2px solid #232323;
    border-bottom: 2px solid #232323;
    transform: rotate(-45deg);
}

.web_view .title .more h3 {
    font-size: 20px;
    letter-spacing: .5px;
    line-height: 24px;
    color: #232323;
    text-shadow: 0 0 .5px #888;
}

/* ----媒體報導----- */
.media .item {
    margin: 24px auto;
    padding: 24px 24px 40px 24px;
    position: relative;
    box-sizing: border-box;
    background: #fff;
    box-shadow: 0 0 15px 1px rgba(0, 0, 0, .2);
}
.media .item .box_wrap {
    display: flex;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.media .item .more_btn {
    position: absolute;
    display: block;
    width: 100%;
    bottom: 0;
    left: 0;
    text-align: center;
    line-height: 40px;
    color: #fff;
    font-size: 16px;
    background-color: #00B285;
}

.media .item .box {
    padding: 0 10px;
    flex: 0 0 20%;
    max-width: 20%;
    box-sizing: border-box;
}

.media .item .box .img_wrap {
    overflow: hidden;
    font-size: 0;
    height: 0;
    padding-bottom: 53%;
    position: relative;
}

.media .item .box .img_wrap img {
    transition: .35s;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 100%;
}

.media .item .box h3 {
    font-size: 16px;
    color: #333;
    line-height: 1.5;
    letter-spacing: .03em;
    margin: 8px 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    max-height: 56px;
}

.media .item .box time {
    font-size: 12px;
    color: #979797;
    display: block;
    text-align: center;
    margin: 8px 0;
}

.media .item .box p {
    font-size: 13px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    max-height: 121px;
    line-height: 1.5;
    color: #555;
}

.media .item .box:hover .img_wrap img {
    transform: scale(1.05);
}

@media screen and (max-width: 1023px) {
    .media .item .box {
        padding: 0 10px;
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 20px;
    }
    .media .item .box time {
        text-align: left;
    }
}


/* ----影片區塊----- */

.video_show {
    width: 100%;
}

/* ----影片區塊-標題----- */

.video_show .wrap .s_title h2 {
    color: #979797;
}

.video_show .wrap .s_title h3 {
    color: #232323;
}

/* ----影片區塊-影片播放----- */

.video_show .wrap .main {
    width: 60%;
    padding-top: 33.72%;
    margin: 48px auto;
    position: relative;
    z-index: 10;
}

.video_show .wrap .main::after {
    content: '';
    width: 18%;
    padding-top: 6%;
    position: absolute;
    z-index: 5;
    right: 0;
    bottom: 0;
    background: #26bd94;
    pointer-events: none;
}

.video_show .wrap .main::before {
    content: '';
    width: 18%;
    padding-top: 6%;
    position: absolute;
    z-index: 6;
    right: 0;
    bottom: 0;
    background: url("/static/freetrial/images/logo.89315e393ea6.png") no-repeat 50% 50%;
    background-size: 80% auto;
    pointer-events: none;
}

.video_show .wrap .main iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

/* ----影片區塊-選項清單----- */

.video_show .wrap .list {
    width: 100%;
}

.video_show .wrap .list .box {
    width: 20%;
    display: inline-block;
    vertical-align: top;
    margin: 0 2.5%;
}

.video_show .wrap .list .box .s_photo {
    width: 100%;
    padding-top: 56.2%;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
    outline: 3px solid #dfdfdf;
}

.video_show .wrap .list .box .s_photo img {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.video_show .wrap .list .box h4 {
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 2px;
    color: #00b286;
}

.video_show .wrap .list .box h5 {
    font-size: 28px;
    line-height: 36px;
    letter-spacing: 2px;
    color: #232323;
}

.video_show .wrap .list .box p {
    margin-top: 8px;
    font-size: 16px;
    /* font-weight: 800; */
    line-height: 26px;
    letter-spacing: 1px;
    color: #232323;
}

.video_show .btn_show span {
    transform: rotateX(0);
    transition: .4s;
}

.video_show .btn_show span.active {
    transform: rotateX(180deg);
}

/* ----深入了解區塊----- */

.know_show {
    width: 100%;
    position: relative;
    background: #fefbe5;
    display: none;
}

.know_show::before {
    content: '';
    width: 100%;
    height: 85%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
    background: #2dbb96;
    pointer-events: none;
}

.know_show::after {
    content: '';
    width: 100%;
    height: 85%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 6;
    background: url("/static/freetrial/images/know_show_bg.17f76bf096ef.png") no-repeat 0 0;
    background-size: 100% auto;
    opacity: .1;
    pointer-events: none;
}

.know_show .wrap {
    padding: 64px 0;
    z-index: 7;
}

/* ----深入了解區塊-標題----- */

.know_show .wrap .s_title h2 {
    color: #ffed21;
}

.know_show .wrap .s_title h3 {
    color: #232323;
}

/* ----深入了解區塊-選項----- */

.know_show .wrap .item {
    width: 100%;
    margin: 48px auto;
    text-align: center;
    transform: perspective(500px) translatez(75px);
    opacity: 0;
    transition: .8s 0s;
}

.know_show .wrap .item.active {
    transform: perspective(500px) translatez(0);
    opacity: 1;
    transition: .8s .5s;
}

.know_show .wrap .item>div {
    width: 45%;
    display: inline-block;
    vertical-align: middle;
}

/* ----深入了解區塊-選項(左側)----- */

.know_show .wrap .item .option .box {
    width: 31.3%;
    margin: 0 1%;
    padding: 32px 0;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    text-align: center;
    background: rgba(28, 41, 62, .15);
    transform: perspective(500px) translateZ(0);
    transition: .6s linear;
}

.know_show .wrap .item .option .box svg {
    height: 60px;
    display: block;
    margin: 8px auto;
}

.know_show .wrap .item .option .box h4 {
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 1.5px;
    color: rgba(28, 41, 62, .5);
}

.know_show .wrap .item .option .box .point {
    margin: 12px 0;
}

.know_show .wrap .item .option .box .point .check {
    background: rgba(255, 255, 255, .5);
}

.know_show .wrap .item .option .box .point h5 {
    display: inline-block;
    vertical-align: middle;
    font-size: 20px;
    letter-spacing: 1px;
    color: rgba(35, 35, 35, .5);
}

/* ----深入了解區塊-選項(左側)-作用中----- */

.know_show .wrap .item .option .box.active {
    background: rgba(255, 255, 255, .5);
    transform: perspective(500px) translateZ(25px);
}

.know_show .wrap .item .option .box.active h4 {
    color: rgba(255, 255, 255, .9);
}

.know_show .wrap .item .option .box.active .check {
    background: rgba(255, 255, 255, .9);
}

.know_show .wrap .item .option .box.active .point h5 {
    color: rgba(35, 35, 35, .9);
}

/* ----深入了解區塊-選項(右側)----- */

.know_show .wrap .item .show {
    position: relative;
}

.know_show .wrap .item .show::before {
    content: '';
    width: 90%;
    padding-top: 50%;
    position: absolute;
    right: 0;
    left: 0;
    bottom: -49%;
    margin: auto;
    background: url("/static/freetrial/images/know_computer.060f9f69d258.png") no-repeat 50% 50%;
    background-size: contain;
}

.know_show .wrap .item .show .view_wrap {
    width: 90%;
    margin: 0 auto;
    padding: 24px;
    box-sizing: border-box;
    border-radius: 12px;
    position: relative;
    background: #363636;
}

.know_show .wrap .item .show .view_wrap .view {
    width: 100%;
    position: relative;
    overflow: hidden;
    background: #fff;
    white-space: nowrap;
    overflow: hidden;
}

.know_show .wrap .item .show .view_wrap .view .view_move {
    transition: .6s linear;
}

.know_show .wrap .item .show .view_wrap .view img {
    width: 100%;
    display: inline-block;
    vertical-align: middle;
}

/* ----深入了解區塊-關閉扭----- */

.know_show .wrap .btn_close {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 64px;
    right: 0;
    z-index: 10;
}

.know_show .wrap .btn_close::before {
    content: '';
    width: 2px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    margin: auto;
    background: #fff;
    transform: rotate(45deg);
}

.know_show .wrap .btn_close::after {
    content: '';
    width: 2px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    margin: auto;
    background: #fff;
    transform: rotate(-45deg);
}

/* ----名人推薦區塊----- */

.recommend {
    width: 100%;
    position: relative;
    background: #fff;
}

.recommend::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: url("/static/freetrial/images/recommend_bg.a949ce0b00fc.png") no-repeat 50% 0;
    background-size: auto 100%;
    z-index: 10;
    pointer-events: none;
}

.recommend .wrap {
    z-index: 11;
}

.recommend .bg_line {
    width: 90%;
    min-width: 1200px;
    max-width: 1600px;
    right: 0;
    margin: auto;
    z-index: 9;
}

/* ----名人推薦區塊-標題----- */

.recommend .wrap .s_title h2 {
    color: #00B285;
}

.recommend .wrap .s_title h3 {
    color: #232323;
}

/* ----名人推薦區塊-內容----- */

.recommend .wrap .item {
    width: 80%;
    margin: 24px auto;
    position: relative;
    z-index: 20;
}

.recommend .wrap .item .box {
    width: 46%;
    margin: 0 2%;
    display: inline-block;
    vertical-align: middle;
    background: #fff;
    box-shadow: 0 0 15px 1px rgba(0, 0, 0, .15);
}

.recommend .wrap .item .box .photo {
    width: 100%;
    padding-top: 56.2%;
    position: relative;
    overflow: hidden;
}

.recommend .wrap .item .box .photo img {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.recommend .wrap .item .box .text {
    width: 100%;
    padding: 48px 24px 0;
    box-sizing: border-box;
    position: relative;
}

.recommend .wrap .item .box .text h4 {
    height: 56px;
    font-size: 22px;
    line-height: 28px;
    letter-spacing: 1px;
    color: #00b286;
    text-align: center;
}

.recommend .wrap .item .box .text div {
    height: 192px;
    padding: 24px 48px 0;
    box-sizing: border-box;
    overflow: hidden;
}

.recommend .wrap .item .box .text h5 {
    position: relative;
    font-size: 17px;
    font-weight: normal;
    line-height: 24px;
    letter-spacing: 1px;
    color: #232323;
}

.recommend .wrap .item .box .text h5::before {
    content: '';
    width: 36px;
    height: 36px;
    position: absolute;
    top: -18px;
    left: -48px;
    background: url("/static/freetrial/images/recommend_text_left.785e9d3ea3b5.png") no-repeat 50% 50%;
    background-size: contain;
}

.recommend .wrap .item .box .text h5::after {
    content: '';
    width: 36px;
    height: 36px;
    position: absolute;
    bottom: -18px;
    right: -48px;
    background: url("/static/freetrial/images/recommend_text_right.66683efc06e0.png") no-repeat 50% 50%;
    background-size: contain;
}

.recommend .wrap .item .box .text span {
    width: 120px;
    height: 120px;
    padding: 16px 0;
    box-sizing: border-box;
    position: absolute;
    top: -100px;
    right: 0;
    left: 0;
    margin: auto;
    text-align: center;
    background: rgba(0, 178, 134, .8);
}

.recommend .wrap .item .box .text span svg {
    width: 58px;
}

.recommend .wrap .item .box .text span p {
    font-size: 16px;
    font-weight: bold;
    line-height: 30px;
    letter-spacing: 1px;
    color: #fff;
}

.recommend .wrap .item .box .watch {
    width: 100%;
    margin: 0 0 48px;
    text-align: center;
}

.recommend .wrap .item .box .watch a {
    padding: 0 72px;
    position: relative;
    display: inline-block;
    border: 1.5px solid #828282;
    border-radius: 8px;
    overflow: hidden;
}

.wrap .item .box .watch a::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(200, 200, 200, .3);
    transform: rotateY(90deg);
    transition: .5s;
}

.recommend .wrap .item .box .watch a:hover::before {
    transform: rotateY(0);
}

.recommend .wrap .item .box .watch a:hover span {
    transform: translate(12px);
}

.recommend .wrap .item .box .watch a p {
    display: inline-block;
    vertical-align: middle;
    font-size: 18px;
    font-weight: 800;
    line-height: 36px;
    letter-spacing: .5px;
    color: #232323;
}

.recommend .wrap .item .box .watch a span {
    width: 16px;
    height: 16px;
    margin-left: 8px;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    border-radius: 50%;
    box-shadow: 0 0 0 1.5px #232323;
    transition: .5s;
}

.recommend .wrap .item .box .watch a span::before {
    content: '';
    width: 0;
    height: 0;
    border-width: 4px 0 4px 8px;
    border-style: solid;
    border-color: transparent transparent transparent #232323;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

/* ----四大特色區塊----- */

.features {
    width: 100%;
    position: relative;
}

/* ----四大特色區塊-標題----- */

.features .wrap .s_title h2 {
    color: #979797;
}

.features .wrap .s_title h3 {
    color: #232323;
}

/* ----四大特色區塊-四大特點----- */

.features .wrap .point {
    width: 100%;
    margin: 36px 0 72px;
    text-align: center;
}

.features .wrap .point .box {
    width: 25%;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    opacity: 0;
    transform: translateX(-20%);
    transition: .5s linear;
}

.features .wrap .point .box.active {
    opacity: 1;
    transform: translateX(0);
}

.features .wrap .point .box:nth-child(1).active {
    transition: .3s linear;
}

.features .wrap .point .box:nth-child(2).active {
    transition: .3s .5s linear;
}

.features .wrap .point .box:nth-child(3).active {
    transition: .3s .8s linear;
}

.features .wrap .point .box:nth-child(4).active {
    transition: .3s 1.2s linear;
}

.features .wrap .point .box .text {
    display: inline-block;
    text-align: left;
}

.features .wrap .point .box .text p {
    font-size: 15px;
    line-height: 20px;
    letter-spacing: .5px;
    color: #979797;
}

.features .wrap .point .box .text h4 {
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 1px;
    color: #232323;
}

.features .wrap .point .box .image {
    width: 50%;
    padding-top: 50%;
    margin: 24px auto 0;
    position: relative;
}

.features .wrap .point .box .image svg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.features .wrap .point .box .image svg.icon {
    width: 40%;
    right: 0;
    bottom: 0;
    margin: auto;
}

.features .wrap .point .box .image::before {
    content: '';
    width: 90%;
    height: 90%;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    border-radius: 50%;
    background: #f7f7f7;
}

.features .wrap .point .box .next {
    width: 24px;
    height: 20px;
    position: absolute;
    top: 22px;
    right: -12px;
    z-index: 10;
}

.features .wrap .point .box .next::before {
    content: '';
    width: 80%;
    height: 5px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    background: #000;
}

.features .wrap .point .box .next::after {
    content: '';
    width: 0;
    height: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    border-width: 8px 0 8px 8px;
    border-style: solid;
    border-color: transparent transparent transparent #000;
}

/* ----四大特色區塊-具體描述----- */

.features .wrap .content {
    width: 60%;
    margin: 0 auto;
    text-align: center;
}

.features .wrap .content .photo {
    width: 40%;
    padding-top: 22.5%;
    margin: 0 auto 16px;
    position: relative;
    background: #fff;
    overflow: hidden;
}

.features .wrap .content .photo img {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
}

.features .wrap .content .photo img:last-child {
    animation: feature 1s infinite alternate both;
}

@keyframes feature {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.features .wrap .content .photo img:first-child {
    z-index: 11;
}

.features .wrap .content h4 {
    margin-bottom: 8px;
    font-size: 28px;
    line-height: 36px;
    letter-spacing: 2px;
    color: #232323;
}

.features .wrap .content h5 {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 1px;
    color: #232323;
}

/* ----洞察報告區塊----- */

.report, .media {
    width: 100%;
    position: relative;
    background: url("/static/freetrial/images/report_bg.0af8b41c1888.png") repeat;
}

/* ----洞察報告區塊-標題----- */

.report .wrap .s_title h2 {
    color: #979797;
}

.report .wrap .s_title h3 {
    color: #232323;
}

/* ----洞察報告區塊-內容slider----- */

.report .wrap .item {
    width: 95%;
    margin: 24px auto;
    padding: 24px;
    position: relative;
    box-sizing: border-box;
    background: #fff;
    box-shadow: 0 0 15px 1px rgba(0, 0, 0, .2);
}

.report .wrap .item .detail {
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
}

.report .wrap .item .detail .translate {
    width: 100%;
    transition: .6s linear;
}

.report .wrap .item .box {
    width: 25%;
    display: inline-block;
    vertical-align: middle;
    padding: 24px;
    box-sizing: border-box;
}

.report .wrap .item .box .photo {
    width: 100%;
    padding-top: 70%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 0 2px #c9c7c6;
}

.report .wrap .item .box .photo img {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: .5s;
}

.report .wrap .item .box:hover .photo img {
    transform: scale(1.1);
}

.report .wrap .item .box h4 {
    margin-top: 12px;
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 1px;
    color: #232323;
    white-space: normal;
}

.report .wrap .item .box h5 {
    height: 120px;
    margin-top: 8px;
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 1px;
    color: #232323;
    white-space: normal;
    overflow: hidden;
}

.report .wrap .item .box .watch {
    margin: 24px 0 0;
    position: relative;
    text-align: center;
    border: 1.5px solid #828282;
    border-radius: 8px;
}

.report .wrap .item .box .watch::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(200, 200, 200, .3);
    transform: rotateY(90deg);
    transition: .5s;
}

.report .wrap .item .box:hover .watch::before {
    transform: rotateY(0);
}

.report .wrap .item .box .watch p {
    display: inline-block;
    vertical-align: middle;
    font-size: 18px;
    font-weight: 800;
    line-height: 36px;
    letter-spacing: .5px;
    color: #232323;
}

.report .wrap .item .box .watch img {
    display: inline-block;
    vertical-align: middle;
    width: 20px;
    margin-left: 8px;
    transition: .5s;
}

.report .wrap .item .box:hover .watch img {
    transform: scale(1.2);
}

/* ----洞察報告區塊-內容箭頭按鈕---- */

.report .wrap .item .arrow {
    width: 36px;
    height: 60px;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    cursor: pointer;
    background: #50c9a8;
    transition: .3s;
}

.report .wrap .item .arrow:hover {
    transform: scale(1.1);
}

.report .wrap .item .arrow::before {
    content: '';
    width: 12px;
    height: 12px;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    border-left: 3px solid #fff;
    border-bottom: 3px solid #fff;
}

.report .wrap .item .arrow.left {
    left: -36px;
}

.report .wrap .item .arrow.left::before {
    left: 15px;
    transform: rotate(45deg);
}

.report .wrap .item .arrow.right {
    right: -36px;
}

.report .wrap .item .arrow.right::before {
    right: 15px;
    transform: rotate(-135deg);
}

/* ----即時警報器區塊---- */

.alert {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.alert::before {
    content: '';
    width: 55%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background: #fefbe5;
    transform: skew(-12deg);
    transform-origin: right bottom;
}

/* ----即時警報器區塊-標題----- */

.alert .s_title h2 {
    color: #00B285;
}

.alert .s_title h3 {
    color: #232323;
}

/* ----即時警報器區塊-描述---- */

.alert .description {
    width: 100%;
    margin: 32px 0;
}

.alert .description object {
    width: 100%;
}

/* ----即時警報器區塊-特點---- */

.alert .item {
    width: 100%;
}

.alert .item .box {
    width: 30%;
    height: 250px;
    margin: 0 1.5%;
    display: inline-block;
    vertical-align: middle;
    border: 1.5px solid #7fd8c2;
    padding: 16px 0;
}

.alert .item .box .first {
    text-align: center;
}

.alert .item .box .first .icon {
    margin: 0 0 16px;
}

.alert .item .box .first img {
    width: 64px;
}

.alert .item .box .first h3 {
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 1px;
    color: #00b286;
}

.alert .item .box .detail {
    width: 280px;
    margin: 0 auto;
}

.alert .item .box .detail .point {
    margin: 16px 0;
}

.alert .item .box .detail .point .check {
    width: 22px;
    height: 22px;
    background: #555;
}

.alert .item .box .detail .point .check::before {
    border-left: 2.5px solid #fff;
    border-bottom: 2.5px solid #fff;
}

.alert .item .box .detail h4 {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 1px;
    color: #555;
    display: inline-block;
    vertical-align: middle;
}

/* ----三大優勢區塊----- */

.winner {
    width: 100%;
    position: relative;
    background: #26bd94;
}

.winner::before {
    content: '';
    width: 100%;
    height: 90%;
    position: absolute;
    top: 0;
    left: 0;
    background: url("/static/freetrial/images/winner_bg.086d139b6129.png") no-repeat 50% 0;
    background-size: auto 100%;
    opacity: .2;
}

.winner .wrap {
    padding: 128px 0 32px;
}

/* ----三大優勢區塊-標題----- */

.winner .wrap .s_title h2 {
    color: #ffed21;
}

.winner .wrap .s_title h3 {
    color: #232323;
}

/* ----三大優勢區塊-內容----- */

.winner .wrap .item {
    width: 100%;
    margin: 168px auto 64px;
}

.winner .wrap .item .box {
    width: 30%;
    height: 360px;
    padding: 100px 0 32px;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    position: relative;
    box-shadow: 0 0 0 1px #fff;
}

.winner .wrap .item .box+.box {
    margin-left: 5%;
}

.winner .wrap .item .box .image {
    width: 168px;
    padding-top: 168px;
    position: absolute;
    right: 0;
    left: 0;
    top: -88px;
    margin: auto;
}

.winner .wrap .item .box .image::before {
    content: '';
    width: 88%;
    height: 88%;
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    background: #fff;
    border-radius: 50%;
}

.winner .wrap .item .box .image svg {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.winner .wrap .item .box .image svg.icon {
    width: 40%;
    bottom: 0;
    right: 0;
    margin: auto;
}

.winner .wrap .item .box h4 {
    margin-bottom: 32px;
    font-size: 28px;
    line-height: 36px;
    letter-spacing: 1px;
    color: #fff;
}

.winner .wrap .item .box .point {
    width: 80%;
    margin-top: 16px;
    display: inline-block;
    vertical-align: middle;
    text-align: left;
}

.winner .wrap .item .box .point h5 {
    display: inline-block;
    vertical-align: middle;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 1px;
    color: #fff;
}

.winner .wrap .item .box .point p {
    margin-top: 8px;
    font-size: 16px;
    font-weight: bold;
    line-height: 24px;
    letter-spacing: .5px;
    color: #0f1111;
}

/* ----服務對象區塊----- */

.user {
    width: 100%;
    position: relative;
    background: #26bd94;
}

/* ----服務對象區塊-標題----- */

.user .wrap .s_title h2 {
    color: #ffed21;
}

.user .wrap .s_title h3 {
    color: #232323;
}

/* ----服務對象區塊-內容----- */

.user .wrap .item {
    margin: 48px 0 24px;
}

.user .wrap .item .apart {
    display: inline;
}

.user .wrap .item .box {
    width: 20%;
    margin: 0 2.5% 24px;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    background: #fff;
    box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, .3);
}

.user .wrap .item .box::before {
    content: '';
    width: 20px;
    height: 36px;
    position: absolute;
    top: -12px;
    right: -10px;
    background: #26bd94;
    transform: rotate(-45deg);
}

.user .wrap .item .box::after {
    content: '';
    width: 0;
    height: 0;
    border-width: 0 20px 20px 0;
    border-style: solid;
    border-color: transparent transparent #1da17c transparent;
    position: absolute;
    top: 0;
    right: 0;
}

.user .wrap .item .box h4 {
    font-size: 20px;
    line-height: 80px;
    letter-spacing: 1.5px;
    color: #232323;
    position: relative;
    z-index: 5;
    padding-left: 40%;
    box-sizing: border-box;
}

.user .wrap .item .box h4::before {
    content: '';
    width: 30%;
    height: 100%;
    background: linear-gradient(to right, transparent, #fff);
    position: absolute;
    top: 0;
    left: 20%;
    z-index: -1;
}

.user .wrap .item .box .photo {
    width: 50%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
}

.user .wrap .item .box .photo img {
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

/* ----服務對象區塊-覆蓋下一層----- */

.user .out {
    border-width: 5vw 49.2vw 0 49.2vw;
    border-style: solid;
    border-color: #26bd94 transparent transparent transparent;
    position: absolute;
    bottom: -5vw;
    left: 0;
    z-index: 10;
}

/* ----費用介紹區塊----- */

.join {
    width: 100%;
    position: relative;
}

/* ----費用介紹區塊-標題----- */

.join .s_title h2 {
    color: #979797;
}

.join .s_title h3 {
    color: #232323;
}

/* ----費用介紹區塊-內容----- */

.join .join_move {
    opacity: 0;
    transform: perspective(300px) translateZ(15px);
    transition: .6s linear;
    position: relative;
    z-index: 10;
}

.join .join_move.active {
    transform: perspective(300px) translateZ(0);
    opacity: 1;
}

.join .item {
    width: 100%;
    margin: 72px auto 0;
}

.join .item .box {
    width: 28%;
    height: 720px;
    margin: 0 2.6%;
    display: inline-block;
    vertical-align: top;
    padding: 168px 32px 0;
    box-sizing: border-box;
    position: relative;
    background: #fff;
    box-shadow: 0 0 15px 1px rgba(0, 0, 0, .2);
}

/* ----費用介紹區塊-背景相片----- */

.join .item .box .photo {
    width: 100%;
    height: 28%;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    opacity: .7;
}

.join .item .box .photo img {
    width: 100%;
}

.join .item .box .photo::before {
    content: '';
    width: 100%;
    height: 60%;
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(180deg, transparent, #fff);
}

/* ----費用介紹區塊-內容----- */

.join .item .box .apart {
    height: 100px;
}

.join .item .box .member {
    width: 160px;
    height: 160px;
    position: absolute;
    right: 0;
    left: 0;
    top: -40px;
    margin: auto;
    background: rgba(38, 189, 148, .8);
}

.join .item .box .member h4 {
    margin-top: 60px;
    font-size: 25px;
    line-height: 36px;
    letter-spacing: 1.5px;
    color: #fff;
    text-align: center;
}

.join .item .box h4 span {
    display: block;
    font-weight: 400;
}

.join .item .box h5 {
    font-size: 38px;
    line-height: 42px;
    letter-spacing: 1px;
    color: #26bd94;
    text-align: center;
    position: relative;
    z-index: 5;
}

.join .item .box h5 span {
    font-size: 16px;
    letter-spacing: .5px;
    color: #979797;
}

.join .item .box h6 {
    font-size: 18px;
    line-height: 24px;
    letter-spacing: .5px;
    color: #979797;
    text-align: center;
}

.join .item .box h6:first-child {
    font-size: 16px;
    color: #454545;
    position: relative;
    z-index: 5;
    text-decoration: line-through;
}

.join .item .box .text {
    width: 80%;
    height: 244px;
    margin: 48px auto;
}

.join .item .box .text p {
    margin: 12px 0;
    font-size: 15px;
    font-weight: bold;
    line-height: 24px;
    letter-spacing: 1px;
    color: #232323;
}

.join .item .box .text p span {
    color: #26bd94;
}

.join .item .box .buttom {
    width: 80%;
    margin: 24px auto 0;
    text-align: center;
}

.join .item .box .buttom a {
    width: 100%;
    display: block;
    border-radius: 6px;
    background: #26bd94;
}

.join .item .box .buttom a p {
    display: inline-block;
    vertical-align: middle;
    font-size: 16.5px;
    font-weight: 800;
    line-height: 50px;
    letter-spacing: .5px;
    color: #fff;
}

.join .item .box .buttom a span {
    width: 18px;
    height: 18px;
    margin-left: 4px;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    border: 1.5px solid #fff;
    border-radius: 50%;
}

.join .item .box .buttom a span::before {
    content: '';
    width: 50%;
    height: 25%;
    position: absolute;
    top: 25%;
    right: 0;
    left: 0;
    margin: auto;
    border-left: 1.5px solid #fff;
    border-bottom: 1.5px solid #fff;
    transform: rotate(-45deg);
}

.join .item .box .buttom h7 {
    font-size: 15px;
    font-weight: 800;
    line-height: 50px;
    letter-spacing: .5px;
    color: #232323;
}

.join .item .box .buttom h7 span {
    color: #ff6761;
}

/* ----費用介紹區塊-不同顏色----- */

.join .item .box .member.premium {
    background: rgba(255, 117, 62, .8);
}

.join .item .box .buttom a.premium {
    background: rgba(255, 117, 62, 1);
}

.join .item .box h5.premium {
    color: rgba(255, 117, 62, 1);
}

.join .item .box .text.premium p span {
    color: rgba(255, 117, 62, 1);
}

.join .item .box .member.custom {
    background: rgba(0, 180, 255, .8);
}

.join .item .box .buttom a.custom {
    background: rgba(0, 180, 255, 1);
}

.join .item .box h5.custom {
    color: rgba(0, 180, 255, 1);
    font-weight: 500;
}

.join .item .box .text.custom p span {
    color: rgba(0, 180, 255, 1);
}

/* ----3/12新增_APP收費----- */

.join .app {
    width: 94.8%;
    margin: 64px auto 0;
    padding: 32px 0;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, .2);
    background-color: #fff;
    background-image: url("/static/freetrial/images/join_app.e68832ea79df.png");
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: auto 100%;
}

.join .app>div {
    display: inline;
}

.join .app .box {
    width: 33.3%;
    height: 300px;
    display: inline-block;
    vertical-align: top;
    position: relative;
    box-sizing: border-box;
}

.join .app .box:last-child {
    border-left: 1px solid #dfdfdf;
}

.join .app .app_title div {
    width: 160px;
    height: 160px;
    position: absolute;
    right: 0;
    left: 0;
    top: -50px;
    margin: auto;
    background: rgba(38, 150, 113, .8);
    text-align: center;
}

.join .app .app_title div::before {
    content: '';
    width: 0;
    height: 100%;
    display: inline-block;
    vertical-align: middle;
}

.join .app .app_title h2 {
    font-size: 24px;
    line-height: 36px;
    letter-spacing: 1px;
    color: #fff;
    display: inline-block;
    vertical-align: middle;
}

.join .app .app_title h2 span {
    font-size: 18px;
    letter-spacing: 3px;
    font-weight: 600;
    display: block;
}

.join .app .app_title a {
    width: 240px;
    font-size: 14px;
    font-weight: bold;
    line-height: 40px;
    letter-spacing: 2px;
    color: #fff;
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    background: rgba(38, 150, 113, .8);
    border-radius: 4px;
    text-align: center;
}

.join .app .box .detail {
    width: 250px;
    margin: 0 auto;
}

.join .app .box h3 {
    font-size: 30px;
    line-height: 42px;
    letter-spacing: 2px;
    color: #269671;
    text-align: center;
}

.join .app .box h4 {
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 1px;
    color: #ff753e;
    text-align: center;
}

.join .app .box h5 {
    font-size: 16px;
    line-height: 28px;
    letter-spacing: .5px;
    color: #979797;
    text-align: center;
}

.join .app .box ul {
    margin: 16px 0 0;
}

.join .app .box ul li {
    font-size: 14px;
    font-weight: bold;
    line-height: 30px;
    letter-spacing: 1px;
    color: #232323;
}

.join .app .box li span {
    color: #269671;
}

/* ----方案比較區塊----- */

.compare {
    width: 100%;
    position: relative;
    background: #f7f7f7;
}

.compare::after {
    content: '';
    width: 100%;
    height: 60%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 6;
    background: url("/static/freetrial/images/know_show_bg.17f76bf096ef.png") no-repeat 0 0;
    background-size: 100% auto;
    opacity: .2;
    pointer-events: none;
}

.compare .wrap {
    padding: 128px 0 64px;
}

/* ----方案比較區塊-標題----- */

.compare .wrap .s_title h2 {
    color: #979797;
}

/* ----方案比較區塊-內容----- */

.compare .wrap .item {
    width: 100%;
    margin: 48px auto 0;
    padding: 32px 5%;
    box-sizing: border-box;
    position: relative;
    z-index: 10;
    background: #fff;
}

.compare .wrap .item table {
    width: 100%;
}

.compare .wrap .item table tr {
    height: 60px;
}

.compare .wrap .item table tr th {
    height: 72px;
    font-size: 30px;
    letter-spacing: 2.5px;
    color: #fff;
    vertical-align: middle;
}

.compare .wrap .item table tr th:nth-child(2) {
    background: #26bd94;
}

.compare .wrap .item table tr th:nth-child(3) {
    background: #ff753e;
}

.compare .wrap .item table tr th:nth-child(4) {
    background: #00b4ff;
}

.compare .wrap .item table tr td {
    width: 25%;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #232323;
    text-align: center;
    vertical-align: middle;
    border-top: 1px solid #dfdfdf;
    border-bottom: 1px solid #dfdfdf;
    background: #fbfbfb;
    transition: .5s;
}

.compare .wrap .item table tr td:first-child {
    font-weight: 500;
    text-align: left;
    padding-left: 7%;
    box-sizing: border-box;
}

.compare .wrap .item table tr.big td:first-child {
    font-weight: 800;
    padding-left: 5%;
}

.compare .wrap .item table tr td img {
    width: 18px;
    margin: 0 0 4px 4px;
    vertical-align: middle;
}

.compare .wrap .item table tr td span {
    width: 8px;
    height: 8px;
    display: inline-block;
    vertical-align: middle;
    margin: 0 0 6px 6px;
    border-left: 2px solid #232323;
    border-bottom: 2px solid #232323;
    transform: rotate(-45deg);
}

.compare .wrap .item table tr.big td {
    background: #fff;
}

.compare .wrap .item table tr.big td:first-child {
    background: #f4fcfa;
}

.compare .wrap .item table tr td:first-child,
.compare .wrap .item table tr td:nth-child(2) {
    border-right: 1px solid #dfdfdf;
}

.compare .wrap .item table tr td:last-child {
    border-left: 1px solid #dfdfdf;
}

.compare .wrap .item table tr:hover td {
    background: rgba(197, 220, 255, .3);
}

/* ----方案比較區塊-打勾樣式----- */

.compare .wrap .item table tr td:nth-child(2) .check {
    background: #26bd94;
}

.compare .wrap .item table tr td:nth-child(3) .check {
    background: #ff753e;
}

.compare .wrap .item table tr td:nth-child(4) .check {
    background: #00b4ff;
}

.compare .wrap .item table .check::before {
    border-left: 2.5px solid #fff;
    border-bottom: 2.5px solid #fff;
}

/* ----聯絡我們區塊----- */

.contact {
    width: 100%;
    position: relative;
    background: url("/static/freetrial/images/contact_bg.7d682462973d.png") repeat-x 50%;
    background-size: 100% 100%;
}

/* ----聯絡我們區塊-標題----- */

.contact .wrap .s_title h2 {
    color: #26bd94;
}

.contact .wrap .s_title h3 {
    color: #fffefe;
}

/* ----費用介紹區塊-內容----- */

.contact .wrap .item {
    width: 80%;
    margin: 36px auto;
    position: relative;
    z-index: 10;
    padding: 64px;
    box-sizing: border-box;
    background: #fff;
}

.contact .wrap .item .apart {
    width: 46%;
    display: inline-block;
    vertical-align: middle;
}

.contact .wrap .item .apart+.apart {
    margin: 0 0 0 8%;
}

.contact .wrap .item .apart .detail {
    position: relative;
    border-bottom: 1.5px solid #dfdfdf;
    margin: 0 0 36px 0;
}

.contact .wrap .item .apart .detail input {
    width: 100%;
    height: 40px;
    font-size: 20px;
    font-weight: 800;
    line-height: 40px;
    color: #333;
    border: 0;
    outline: 0;
}

.contact .wrap .item .apart .detail label {
    font-size: 20px;
    font-weight: 800;
    line-height: 40px;
    letter-spacing: 1.5px;
    color: #979797;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    transition: .5s;
}

.contact .wrap .item .apart .detail label.active {
    top: -40px;
    font-size: 16px;
}

.contact .wrap .item .apart .detail span.active {
    width: 100%;
}

.contact .wrap .item .apart .detail span {
    width: 0;
    height: 100%;
    border-bottom: 1.5px solid #26bd94;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    transition: .5s;
}

.contact .wrap .item h4 {
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 2px;
    color: #232323;
}

.contact .wrap .item .option {
    width: 100%;
    margin: 24px 0;
}

.contact .wrap .item .option .box {
    display: inline-block;
    vertical-align: middle;
    margin: 12px 24px 12px 0;
    position: relative;
}

.contact .wrap .item .option .box input {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
}

.contact .wrap .item .option .box label {
    font-size: 20px;
    font-weight: 800;
    line-height: 32px;
    letter-spacing: 2px;
    color: #979797;
    display: inline-block;
    padding-left: 36px;
    transition: .5s;
}

.contact .wrap .item .option .box span {
    width: 32px;
    height: 32px;
    position: absolute;
    top: 0;
    left: 0;
    background: url("/static/freetrial/images/form_uncheck.c0e0f5fcde95.png") no-repeat 50% 50%;
    background-size: contain;
    pointer-events: none;
    transform: scale(1);
    transition: .5s;
}

.contact .wrap .item .option .box input:checked~span {
    background: url("/static/freetrial/images/form_check.2d7ad3b2faa2.png") no-repeat 50% 50%;
    background-size: contain;
    transform: scale(1.1);
}

.contact .wrap .item .option .box input:checked~label {
    color: #333;
}

.contact .wrap .item textarea {
    width: 100%;
    height: 152px;
    margin: 16px 0;
    padding: 16px;
    box-sizing: border-box;
    font-size: 16px;
    font-weight: 800;
    line-height: 24px;
    color: #333;
    background: #f7f7f7;
    border: 0;
    outline: 0;
    resize: none;
}

.contact .wrap .item .more {
    position: relative;
}

.contact .more .btn_more span::before {
    transform: rotate(-135deg);
    top: 0;
    bottom: 0;
    left: -4px;
}

.contact .wrap .item .more .btn_sent {
    width: 250px;
    height: 50px;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    margin: auto;
    z-index: 11;
    opacity: 0;
    cursor: pointer;
}

.contact .footer {
    width: 100%;
    margin: 32px 0;
}

.contact .footer h3 {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 2px;
    color: #fff;
    text-align: center;
}

.contact .footer .policyPop {
    padding: 0 5px;
    cursor: pointer;
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .know_show .wrap .item>div {
        width: 50%;
    }
    .recommend .wrap .item .box .text div {
        height: 248px;
    }
    .report .wrap .item {
        width: 93%;
        padding: 12px;
    }
    .report .wrap .item .box {
        padding: 12px;
    }
    .report .wrap .item .box h4 {
        font-size: 22px;
    }
    .report .wrap .item .box h5 {
        font-size: 15px;
        letter-spacing: 0;
    }
    .recommend .bg_line {
        min-width: 1000px;
    }
    .winner .wrap .item .box {
        width: 32%;
    }
    .winner .wrap .item .box+.box {
        margin-left: 2%;
    }
    .winner .wrap .item .box .point {
        width: 90%;
    }
    .user .wrap .item .box {
        width: 28%;
        margin: 0 2.6% 24px;
    }
    .join .wrap .item .box {
        width: 32%;
        margin: 0 .6%;
        padding: 168px 24px 24px 24px;
    }
    .join .wrap .item .box .text {
        width: 90%;
    }
    .join .wrap .item .box h6 {
        font-size: 17.5px;
    }
    .join .app {
        width: 98%;
    }
}

@media screen and (max-width: 1023px) {
    /* ----進站畫面-主標---- */
    .web_view .title {
        width: 80%;
    }
    .web_view .title .text h1 a {
        font-size: 5.5vw;
        letter-spacing: 1px;
        text-align: center;
    }
    .web_view .title .more {
        width: 88px;
        height: 88px;
    }
    .web_view .title .more>div::after {
        width: 10px;
        height: 10px;
    }
    .web_view .title .more h3 {
        font-size: 16px;
        line-height: 20px;
    }
    /* ----影片區塊-影片播放----- */
    .video_show .wrap .main {
        width: 100%;
        padding-top: 56.2%;
        margin: 24px auto;
    }
    /* ----影片區塊-選項清單----- */
    .video_show .wrap .list .detail {
        width: 80%;
        display: inline-block;
        vertical-align: middle;
        overflow: hidden;
        white-space: nowrap;
        box-shadow: 0 0 5px .5px #ccc;
    }
    .video_show .wrap .list .translate {
        transition: .6s linear;
    }
    .video_show .wrap .list .box {
        width: 100%;
        margin: 0;
        padding: 16px;
        box-sizing: border-box;
        background: #fff;
    }
    .video_show .wrap .list .box p {
        letter-spacing: .5px;
        white-space: normal;
    }
    /* ----影片區塊-選項清單-按鈕----- */
    .video_show .wrap .list .arrow {
        width: 32px;
        height: 50px;
        display: inline-block;
        vertical-align: middle;
        position: relative;
        background: #2dbb96;
    }
    .video_show .wrap .list .arrow::before {
        content: '';
        width: 12px;
        height: 12px;
        position: absolute;
        top: 0;
        bottom: 0;
        margin: auto;
        border-left: 2px solid #fff;
        border-bottom: 2px solid #fff;
    }
    .video_show .wrap .list .arrow.btn_right::before {
        right: 40%;
        transform: rotate(-135deg);
    }
    .video_show .wrap .list .arrow.btn_left::before {
        left: 40%;
        transform: rotate(45deg);
    }
    /* ----深入了解區塊----- */
    .know_show::after {
        background: url("/static/freetrial/images/know_show_bg.17f76bf096ef.png") no-repeat 0 0;
    }
    /* ----深入了解區塊-標題----- */
    .know_show .wrap .s_title h2 span {
        display: block;
    }
    /* ----深入了解區塊-選項----- */
    .know_show .wrap .item {
        margin: 24px auto;
    }
    .know_show .wrap .item>div {
        width: 100%;
        margin-bottom: 32px;
    }
    /* ----深入了解區塊-選項(左側)----- */
    .know_show .wrap .item .option .box {
        width: 33.3%;
        padding: 16px 0;
        margin: 0;
    }
    .know_show .wrap .item .option .box svg {
        height: 36px;
    }
    .know_show .wrap .item .option .box h4 {
        font-size: 20px;
        line-height: 28px;
        letter-spacing: 1px;
    }
    .know_show .wrap .item .option .box .point div {
        width: 18px;
        height: 18px;
        margin-right: 4px;
    }
    .know_show .wrap .item .option .box .point div::before {
        top: 4px;
    }
    .know_show .wrap .item .option .box .point h5 {
        font-size: 14px;
        letter-spacing: .5px;
        color: rgba(35, 35, 35, .5);
    }
    /* ----深入了解區塊-選項(左側)-作用中----- */
    .know_show .wrap .item .option .box.active .arrow {
        opacity: 1;
    }
    /* ----深入了解區塊-選項(右側)----- */
    .know_show .wrap .item .show .view_wrap {
        padding: 12px;
    }
    .know_show .wrap .item .show::before {
        bottom: -54%;
    }
    /* ----深入了解區塊-關閉扭----- */
    .know_show .wrap .btn_close {
        width: 40px;
        height: 40px;
        top: 32px;
    }
    /* ----深入了解區塊-指示----- */
    .know_show .wrap .arrow {
        width: 0px;
        height: 0px;
        position: absolute;
        right: 0;
        left: 0;
        bottom: -6px;
        margin: auto;
        border-width: 12px 14px 0 14px;
        border-style: solid;
        border-color: #fff transparent transparent transparent;
        opacity: 0;
    }
    /* ----名人推薦區塊----- */
    .recommend {
        background: #fefbe5;
    }
    .recommend .wrap {
        padding: 64px 0 32px;
    }
    .recommend::before {
        height: 18%;
    }
    /* ----名人推薦區塊-內容----- */
    .recommend .wrap .item {
        width: 90%;
    }
    .recommend .wrap .item .box {
        width: 100%;
        margin: 0 0 24px;
    }
    .recommend .wrap .item .box .text {
        width: 100%;
        padding: 48px 24px 0;
        box-sizing: border-box;
        position: relative;
    }
    .recommend .wrap .item .box .text h4 {
        height: 48px;
        font-size: 18px;
        line-height: 24px;
    }
    .recommend .wrap .item .box .text div {
        display: none;
    }
    .recommend .wrap .item .box .text span {
        width: 108px;
        height: 108px;
        top: -88px;
        padding: 20px 0;
    }
    .recommend .wrap .item .box .text span svg {
        width: 48px;
    }
    .recommend .wrap .item .box .text span p {
        font-size: 15px;
        letter-spacing: .5px;
    }
    .recommend .wrap .item .box .watch {
        margin: 16px 0 24px;
    }
    .recommend .wrap .item .box .watch a {
        border: 1px solid #828282;
        border-radius: 4px;
    }
    .recommend .wrap .item .box .watch a p {
        display: inline-block;
        vertical-align: middle;
        font-size: 18px;
        font-weight: 800;
        line-height: 36px;
        letter-spacing: .5px;
        color: #232323;
    }
    .recommend .wrap .item .box .watch a span {
        width: 16px;
        height: 16px;
        margin-left: 8px;
        display: inline-block;
        vertical-align: middle;
        position: relative;
        border-radius: 50%;
        box-shadow: 0 0 0 1.5px #232323;
    }
    .recommend .wrap .item .box .watch a span::before {
        content: '';
        width: 0;
        height: 0;
        border-width: 4px 0 4px 8px;
        border-style: solid;
        border-color: transparent transparent transparent #232323;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        margin: auto;
    }
    /* ----四大特色區塊-四大特點----- */
    .features .wrap .point {
        margin: 36px 0 18px;
    }
    .features .wrap .point .box {
        width: 45%;
        margin: 16px 2.5%;
    }
    .features .wrap .point .box .text p {
        letter-spacing: 0;
    }
    .features .wrap .point .box .text h4 {
        font-size: 16px;
        line-height: 22px;
        letter-spacing: .5px;
    }
    .features .wrap .point .box .image {
        width: 65%;
        padding-top: 65%;
        margin: 24px auto 0;
        position: relative;
    }
    /* ----四大特色區塊-具體描述----- */
    .features .wrap .content {
        width: 85%;
    }
    .features .wrap .content .photo {
        width: 80%;
        padding-top: 44.8%;
    }
    .features .wrap .content h4 {
        font-size: 17px;
        line-height: 25px;
        letter-spacing: 0;
    }
    .features .wrap .content h5 {
        font-size: 14px;
        line-height: 22px;
        letter-spacing: .5px;
        text-align: justify;
    }
    .report .wrap {
        padding: 64px 0 32px;
    }
    .report .wrap .item {
        width: 80%;
        padding: 0px;
    }
    .report .wrap .item .box {
        width: 100%;
        padding: 12px;
    }
    /* ----洞察報告區塊-內容箭頭按鈕---- */
    .report .wrap .item .arrow {
        width: 32px;
        height: 50px;
    }
    .report .wrap .item .arrow.left {
        left: -32px;
    }
    .report .wrap .item .arrow.left::before {
        left: 12px;
    }
    .report .wrap .item .arrow.right {
        right: -32px;
    }
    .report .wrap .item .arrow.right::before {
        right: 12px;
    }
    /* ----即時警報器區塊-特點---- */
    .alert .item {
        width: 85%;
        margin: 0 auto;
    }
    .alert .description {
        width: 85%;
        margin: 16px auto;
    }
    .alert .item .box .detail .point .check {
        width: 20px;
        height: 20px;
    }
    .alert .item .box {
        width: 100%;
        height: auto;
        border: 0;
        padding: 16px 0;
        margin: 0;
    }
    .alert .item .box+.box {
        border-top: 1.5px solid #7fd8c2;
    }
    .alert .item .box .first {
        text-align: left;
    }
    .alert .item .box .first .icon {
        margin: 0 6px 0 0;
        display: inline-block;
        vertical-align: middle;
    }
    .alert .item .box .first img {
        width: 42px;
    }
    .alert .item .box .first h3 {
        font-size: 16px;
        display: inline-block;
        vertical-align: middle;
    }
    .alert .item .box .detail h4 {
        font-size: 14px;
    }
    .alert .item .box .detail {
        width: auto;
    }
    .alert .item .box .detail .point {
        margin: 10px 0;
    }
    /* ----三大優勢區塊----- */
    .winner::before {
        height: 50%;
        background: url("/static/freetrial/images/winner_bg.086d139b6129.png") no-repeat 50% 0;
        background-size: auto 100%;
    }
    .winner .wrap {
        padding: 64px 0 16px;
    }
    /* ----三大優勢區塊-內容----- */
    .winner .wrap .item {
        margin: 48px auto 0;
    }
    .winner .wrap .item .box {
        width: 85%;
        height: auto;
        padding: 16px;
        box-sizing: border-box;
        display: block;
        margin: 16px auto;
        box-shadow: 0 0 0 0 #fff;
    }
    .winner .wrap .item .box+.box {
        margin-left: auto;
    }
    .winner .wrap .item .box .image {
        width: 25%;
        padding-top: 25%;
        position: relative;
        display: inline-block;
        vertical-align: middle;
        margin: 0 16px 0 0;
        top: 0;
    }
    .winner .wrap .item .box .image svg.icon {
        width: 55%;
    }
    .winner .wrap .item .box h4 {
        margin-bottom: 0;
        display: inline-block;
        vertical-align: middle;
    }
    .winner .wrap .item .box .point {
        width: 100%;
    }
    .winner .wrap .item .box .point h5 {
        font-size: 16px;
    }
    .winner .wrap .item .box .point p {
        font-size: 14px;
    }
    /* ----服務對象區塊-內容----- */
    .user .wrap .item {
        width: 80%;
        padding: 12px 0;
        margin: 48px 0 48px 16px;
        display: inline-block;
        vertical-align: middle;
        white-space: nowrap;
        overflow: hidden;
        box-shadow: 0 0 5px 1px rgba(0, 0, 0, .2);
    }
    .user .wrap .item .next_move {
        transition: .6s linear;
    }
    .user .wrap .item .apart {
        width: 100%;
        display: inline-block;
        vertical-align: middle;
        white-space: normal;
    }
    .user .wrap .item .box {
        width: 80%;
        margin: 12px 10% 12px;
    }
    .user .wrap .item .box h4 {
        font-size: 17px;
        line-height: 72px;
    }
    .user .wrap .btn_next {
        width: 30px;
        height: 50px;
        margin-left: 4px;
        display: inline-block;
        vertical-align: middle;
        position: relative;
        background: rgba(255, 255, 255, 1);
    }
    .user .wrap .btn_next::before {
        content: '';
        width: 12px;
        height: 12px;
        border-left: 3px solid #26bd94;
        border-bottom: 3px solid #26bd94;
        position: absolute;
        top: 0;
        right: 12px;
        bottom: 0;
        margin: auto;
        transform: rotate(-135deg);
    }
    /* ----費用介紹區塊-內容----- */
    .join .wrap {
        padding: 64px 0;
    }
    .join .wrap .item {
        width: 90%;
        margin: 36px auto 0;
    }
    .join .wrap .item .box {
        width: 100%;
        height: auto;
        margin: 12px 0;
        padding: 0;
        position: relative;
        background: #fff;
        box-shadow: 0 0 5px 0 rgba(0, 0, 0, .2);
    }
    .join .item .box .buttom {
        margin: 24px auto;
    }
    .join .app {
        width: 90%;
        margin: 12px auto 0;
        padding: 0;
        background: #fff;
        box-shadow: 0 0 5px 0 rgba(0, 0, 0, .2);
    }
    .join .app .box {
        width: 100%;
        height: auto;
        margin: 12px 0;
    }
    .join .app .hidden {
        display: none;
    }
    .join .app .box.app_title {
        margin: 0;
    }
    .join .app .app_title h2 span {
        display: inline;
    }
    .join .app .box h3,
    .join .app .box h4,
    .join .app .box h5 {
        text-align: left;
    }
    .join .app .box:last-child .detail {
        border-left: 0;
        border-top: 1px solid #dfdfdf;
        padding: 16px 0 0;
    }
    .join .app .app_title div {
        width: 100%;
        height: auto;
        position: static;
        padding: 4px 16px;
        box-sizing: border-box;
        text-align: left;
    }
    .join .app .app_title .arrow {
        width: 22px;
        height: 22px;
        position: absolute;
        top: 0;
        bottom: 0;
        right: 16px;
        margin: auto;
        background: #fff;
        border-radius: 50%;
    }
    .join .app .app_title .arrow::before {
        content: '';
        width: 32%;
        height: 32%;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
        border-left: 2.5px solid rgba(38, 150, 113, .8);
        border-bottom: 2.5px solid rgba(38, 150, 113, .8);
        transform: rotate(-45deg);
    }
    /* ----費用介紹區塊-背景相片----- */
    .join .wrap .item .box .photo {
        height: 120px;
    }
    .join .wrap .item .box .photo img {
        display: none;
    }
    .join .wrap .item .box .photo::before {
        bottom: 40%;
        background: linear-gradient(180deg, #dfdfdf, #fff);
    }
    /* ----費用介紹區塊-內容----- */
    .join .wrap .item .box .hidden {
        display: none;
    }
    .join .wrap .item .box .first {
        height: 120px;
        position: relative;
        padding-left: 120px;
        box-sizing: border-box;
    }
    .join .wrap .item .box .first::before {
        content: '';
        width: 0;
        height: 100%;
        display: inline-block;
        vertical-align: middle;
    }
    .join .wrap .item .box .apart {
        width: 100%;
        height: auto;
        display: inline-block;
        vertical-align: middle;
    }
    .join .wrap .item .box .member {
        width: 120px;
        height: 120px;
        position: absolute;
        top: 0;
        margin: 0;
        padding: 16px 0;
        box-sizing: border-box;
        text-align: center;
    }
    .join .wrap .item .box .member .arrow {
        width: 22px;
        height: 22px;
        display: inline-block;
        margin-top: 8px;
        position: relative;
        background: #fff;
        border-radius: 50%;
    }
    .join .wrap .item .box .member .arrow::before {
        content: '';
        width: 32%;
        height: 32%;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
        border-left: 2.5px solid rgba(38, 189, 148, .8);
        border-bottom: 2.5px solid rgba(38, 189, 148, .8);
        transform: rotate(-45deg);
    }
    .join .wrap .item .box .member.premium .arrow::before {
        border-left: 2.5px solid rgba(255, 117, 62, .8);
        border-bottom: 2.5px solid rgba(255, 117, 62, .8);
    }
    .join .wrap .item .box .member.custom .arrow::before {
        border-left: 2.5px solid rgba(0, 180, 255, .8);
        border-bottom: 2.5px solid rgba(0, 180, 255, .8);
    }
    .join .wrap .item .box .member h4 {
        margin-top: 0;
        font-size: 20px;
        line-height: 28px;
        letter-spacing: 1.5px;
    }
    .join .wrap .item .box h5 {
        font-size: 26px;
        line-height: 40px;
        letter-spacing: .5px;
    }
    .join .wrap .item .box h6 {
        font-size: 14px;
        line-height: 20px;
    }
    .join .wrap .item .box h6 span {
        display: block;
    }
    .join .wrap .item .box .text {
        height: auto;
        margin: 24px auto 0;
    }
    .join .btn_more span {
        transform: rotateX(0);
        transition: .6s;
    }
    .join .btn_more span.active {
        transform: rotateX(180deg);
    }
    /* ----費用介紹區塊-詳細比較按鈕----- */
    .join .wrap .more {
        position: absolute;
        margin: 0;
        bottom: -25px;
    }
    .join .wrap .more .btn_table {
        width: 90%;
    }
    /* ----方案比較區塊----- */
    .compare {
        display: none;
    }
    .compare .wrap {
        opacity: 0;
        transform: perspective(500px) translateZ(50px);
        transition: .8s .1s;
    }
    .compare .wrap.active {
        perspective: 300px;
        transform: perspective(500px) translateZ(0);
        opacity: 1;
        transition: .8s 1s;
    }
    .compare::after {
        height: 30%;
        background: url("/static/freetrial/images/know_show_bg.17f76bf096ef.png") no-repeat 50% 0;
        background-size: auto 100%;
    }
    .compare .wrap {
        padding: 96px 0 32px;
    }
    /* ----方案比較區塊-標題----- */
    .compare .wrap .s_title h2 {
        color: #979797;
    }
    /* ----方案比較區塊-內容----- */
    .compare .wrap .item {
        margin: 24px auto 0;
        padding: 32px 0;
    }
    .compare .wrap .item {
        background: transparent;
    }
    .compare .wrap .item table tr th {
        font-size: 22px;
        line-height: 32px;
    }
    .compare .wrap .item table tr td {
        width: 20%;
        font-size: 15px;
        line-height: 25px;
    }
    .compare .wrap .item table tr td:first-child {
        width: 40%;
    }
    .compare .wrap .item table tr.big td:first-child {
        padding-left: 3%;
        padding-right: 3%;
    }
    .compare .wrap .item table tr td:first-child {
        padding-left: 3%;
        padding-right: 3%;
    }
    /* ----聯絡介紹區塊-內容----- */
    .contact {
        background: url("/static/freetrial/images/contact_bg.7d682462973d.png") repeat-x 50%;
        background-size: auto 100%;
    }
    .contact .wrap .item {
        width: 95%;
        padding: 48px 16px;
    }
    .contact .wrap .item .apart {
        width: 100%;
        display: inline-block;
        vertical-align: middle;
    }
    .contact .wrap .item .apart+.apart {
        margin: 0 0 0 0;
    }
    .contact .wrap .item .option .box {
        width: 50%;
        margin: 12px 0;
    }
    .contact .wrap .item textarea {
        height: 104px;
    }
    .contact .wrap .item .more .btn_more {
        width: 100%;
    }
    .contact .wrap .item .more .btn_sent {
        width: 100%;
    }
    @media screen and (min-width: 768px) and (max-width: 1023px) {
        .web_view .title {
            width: 400px;
        }
        .web_view .title .text h2 {
            font-size: 30px;
        }
        .web_view .title .more {
            width: 98px;
            height: 98px;
        }
        .video_show .wrap .list .detail {
            width: 90%;
        }
        .video_show .wrap .list .box {
            width: 50%;
        }
        .know_show .wrap .item .option .box .point h5 {
            font-size: 18px;
        }
        .know_show .wrap .item .show .view_wrap {
            width: 80%;
            padding: 16px;
        }
        .recommend .wrap .item {
            width: 82%;
        }
        .recommend .wrap .item .box .text div {
            display: block;
            height: 144px;
        }
        .features .wrap .point .box {
            width: 25%;
            margin: 0;
        }
        .features .wrap .content {
            width: 70%;
        }
        .features .wrap .point .box .next {
            display: block;
            width: 20px;
        }
        .features .wrap .point .box .next::before {
            height: 4px;
        }
        .features .wrap .point .box .next::after {
            border-width: 6px 0 6px 6px;
        }
        .report .wrap .item .box {
            width: 50%;
        }
        .winner .wrap .item .box .first,
        .winner .wrap .item .box .text {
            width: 35%;
            display: inline-block;
            vertical-align: middle;
        }
        .winner .wrap .item .box .first .image {
            display: block;
            width: 50%;
            padding-top: 50%;
            margin: 0 auto 16px;
        }
        .winner .wrap .item .box .text {
            width: 60%;
            margin-left: 5%;
        }
        .user .wrap .item {
            width: 100%;
            padding: 12px 0;
            margin: 48px 0;
            display: inline-block;
            vertical-align: middle;
            white-space: normal;
            overflow: hidden;
            box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0);
        }
        .user .wrap .item .apart {
            display: inline;
        }
        .user .wrap .item .box {
            width: 28%;
            margin: 12px 2.6% 12px;
        }
        .user .wrap .btn_next {
            display: none;
        }
        .join .wrap .item .box .text p {
            width: 50%;
            margin: 4px 0;
            display: inline-block;
        }
        .join .wrap .item .box .buttom {
            margin: 12px auto 24px;
            text-align: left;
        }
        .join .wrap .item .box .buttom a {
            width: 200px;
            display: inline-block;
            vertical-align: middle;
            margin-right: 32px;
            text-align: center;
        }
        .join .wrap .item .box .buttom h7 {
            vertical-align: middle;
        }
        .contact .wrap .item .option .box {
            width: 33.3%;
        }
    }
}
