* {
    margin: 0;
    padding: 0;
    font-family: 'ariel', "微軟正黑體";
    text-decoration: none !important;
    list-style: none;
}

body {
    padding-top: 0;
}

/* 1070616更新 -----------------------------------start*/

/* HEADER */

header {
    width: 100%;
    height: 55px;
    background: #333;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 50;
    box-shadow: 0 1px 10px 0 rgba(0, 0, 0, .3);
}

header nav {
    width: 85%;
    height: 100%;
    min-width: 960px;
    max-width: 1680px;
    margin: 0 auto;
    position: relative;
}

header nav .logo {
    width: 100px;
    height: 100%;
}

header nav .logo::before {
    content: '';
    width: 0;
    height: 100%;
    display: inline-block;
    vertical-align: middle;
}

header nav .logo a {
    height: 30px;
    display: inline-block;
    vertical-align: middle;
}

header nav .logo img {
    height: 100%;
}

header nav .menu {
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
}

header nav .menu li {
    height: 100%;
    display: inline-block;
    vertical-align: middle;
    transition: .4s;
}

header nav .menu li a:hover {
    background: #444;
}

header nav .menu li a {
    height: 100%;
    padding: 0 16px;
    display: block;
    transition: .4s;
}

header nav .menu li a::before {
    content: '';
    width: 0;
    height: 100%;
    display: inline-block;
    vertical-align: middle;
}

header nav .menu li a p {
    font-size: 16px;
    font-weight: bold;
    line-height: 25px;
    letter-spacing: 1px;
    color: #fff;
    display: inline-block;
    vertical-align: middle;
    margin: 0;
    transition: .4s;
}

.btn_menu {
    width: 55px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
}

.btn_menu div {
    width: 30px;
    height: 23px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.btn_menu div span {
    width: 100%;
    height: 2px;
    position: absolute;
    left: 0;
    background: #fff;
    transition: .4s;
}

.btn_menu div span:nth-child(1) {
    top: 0;
}

.btn_menu div span:nth-child(2) {
    top: 0;
    bottom: 0;
    margin: auto;
}

.btn_menu div span:nth-child(3) {
    bottom: 0;
}

.btn_menu.active div span:nth-child(1) {
    transform: rotate(45deg);
    transform-origin: 0 0;
}

.btn_menu.active div span:nth-child(2) {
    transform: scaleX(0);
}

.btn_menu.active div span:nth-child(3) {
    transform: rotate(-45deg);
    transform-origin: 0 100%;
}

/* FOOTER */

.footer {
    width: 100%;
    min-width: 0;
    padding: 48px 0;
    background: #333;
}

.footer p {
    font-size: 15px;
    line-height: 24px;
    color: #fff;
    margin: 4px 0;
}

.footer p a {
    margin: 4px;
    display: inline-block;
    font-size: 16px;
    line-height: 24px;
}

.footer p a:hover {
    font-weight: bold;
}

/* 首頁 */

.main_view_wrap {
    width: 100%;
    height: 100vh;
    text-align: center;
    position: relative;
    background: url(../../images/HOME-image.jpg) no-repeat fixed;
    background-size: cover;
}

 @media screen and (max-width:480px){
      .main_view_wrap{
         background: url(../../images/HOME-image2.jpg) no-repeat fixed;
      }
  }

.main_view_wrap::before {
    content: '';
    width: 0;
    height: 100%;
    display: inline-block;
    vertical-align: middle;
}

.main_view {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    z-index: 2;
}

.main_view .logo_box {
    margin: 0 0 36px;
}

.main_view .logo_box img {
    width: 108px;
    height: 108px;
}

.main_view .text_box {
    margin: 0 0 24px;
}

.main_view .text_box h2 {
    font-size: 26px;
    line-height: 36px;
    letter-spacing: 2px;
    color: #000;
    margin: 0 0 24px;
    text-shadow: 3px 3px 3px #ccc;
}

.main_view .text_box h3 {
    font-size: 18px;
    line-height: 36px;
    letter-spacing: 1px;
    color: #000;
    margin: 0;
    text-shadow: 3px 3px 3px #ccc;
}

.btn_download {
    display: inline-block;
    width: 350px;
    height: 50px;
    background: #515151;
    position: relative;
    transition: .5s;
    box-shadow: 3px 3px 10px 0 rgba(0, 0, 0, .3);
    border-radius: 50px;
    text-align: center;
}

.btn_download p {
    display: inline-block;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 2px;
    line-height: 50px;
    color: #fff;
    transition: .5s;
    margin: 0;
}

.btn_download.small p {
    font-size: 15px;
}

.btn_download::after {
    content: '';
    width: 25px;
    height: 25px;
    background: url(../../images/new/next.png) no-repeat;
    background-size: contain;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    opacity: 0;
    transition: .5s;
    margin: auto;
}

.btn_download:hover p {
    transform: translate(28px);
}

.btn_download:hover::after {
    transform: translate(56px);
    opacity: 1;
}

.wrap {
    width: 100%;
    padding: 48px 0;
    position: relative;
}

.wrap.blue {
    padding: 60px 0;
}

.wrap.blue::before {
    content: '';
    width: 100%;
    height: 100%;
    background: #d2deff linear-gradient(to top, #cfd9df 0%, #e2ebf0 100%);
    position: absolute;
    top: 0;
    left: 0;
    /* transform: skewY(2deg); */
    z-index: -1;
}

.layout {
    width: 85%;
    min-width: 1000px;
    max-width: 1600px;
    margin: 0 auto;
    /* font-size: 0; */
}

.wrap h2 {
    font-size: 40px;
    line-height: 48px;
    letter-spacing: 2px;
    color: #666;
    text-align: center;
    margin: 0 0 60px;
}

.wrap h2.border {
    border-bottom: 1px solid #ccc;
    padding: 0 0 12px;
}

.wrap .item {
    width: 100%;
    text-align: center;
}

.wrap .item .apart {
    width: 350px;
    display: inline-block;
    vertical-align: top;
}

.wrap .item .item_box {
    width: 100%;
}

.wrap .item .s_title {
    width: 100%;
}

.wrap .item .s_title img {
    height: 88px;
}

.wrap .item .s_title h3 {
    font-size: 24px;
    font-weight: bold;
    line-height: 32px;
    letter-spacing: 2px;
    color: #666;
    margin: 16px 0;
}

.wrap .item .text h4 {
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 1px;
    color: #333;
}

.wrap .item .text h5 {
    font-size: 15px;
    line-height: 20px;
    letter-spacing: 1px;
    color: #333;
    margin: 0;
    display: inline-block;
    vertical-align: middle;
}

.wrap .item .text ul {
    display: inline-block;
}

.wrap .item .text li {
    text-align: left;
    margin: 8px 0;
}

.wrap .item .text li::before {
    content: '';
    width: 18px;
    height: 18px;
    display: inline-block;
    vertical-align: middle;
    margin: 0 12px 0 0;
    background: url(../../images/new/star.png) no-repeat;
    background-size: contain;
}

.wrap .content {
    width: 80%;
    margin: 0 auto;
}

.wrap .content p {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 1px;
    color: #333;
}

.wrap .content a {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 1px;
    color: #00cbff;
}

.wrap .image {
    width: 80%;
    margin: 24px auto 0;
    text-align: center;
}

.wrap .image img {
    width: 680px;
}

/* 內頁title */

.view_wrap {
    width: 100%;
    padding: 100px 0 200px;
    position: relative;
    text-align: center;
}

.view_wrap::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: linear-gradient(120deg, #89f7fe 0%, #66a6ff 100%);
    opacity: .5;
}

.view_wrap .view {
    text-align: center;
    position: relative;
    z-index: 2;
}

.view_wrap .view h1 {
    font-size: 32px;
    font-weight: bold;
    line-height: 42px;
    letter-spacing: 2px;
    color: #fff;
    margin: 0;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, .8);
}

.view_wrap .view h2 {
    font-size: 28px;
    font-weight: bold;
    line-height: 42px;
    letter-spacing: 2px;
    color: #fff;
    margin: 0;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, .5);
}

.view_wrap .view h3 {
    width: 85%;
    font-size: 18px;
    font-weight: bold;
    line-height: 28px;
    letter-spacing: 1px;
    color: #fff;
    margin: 12px auto 0;
}

.view_wrap .view span {
    font-size: 18px;
    font-weight: bold;
    line-height: 28px;
    letter-spacing: 1px;
    color: #fff;
    margin: 0;
}

.view_wrap .view a {
    color: #ccc;
}

.view_wrap .view a:hover {
    color: rgb(255, 145, 145);
}

.view_wrap .view .content {
    margin: 36px 0 0;
    font-size: 0;
}

.view_wrap .view .content a {
    margin: 0 12px;
}

.view_wrap .view .content h5 {
    font-size: 16px;
    font-weight: bold;
    line-height: 24px;
    letter-spacing: 1px;
    color: #fff;
    margin: 24px 0 0;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, .5);
}

.view_inner_wrap {
    width: 100%;
    padding: 80px 0 40px;
    background: url(../../images/new/inner_bg.jpg) no-repeat 50% 50%;
    background-size: cover;
}

.view_inner_wrap h1 {
    font-size: 32px;
    font-weight: bold;
    line-height: 42px;
    letter-spacing: 2px;
    color: #fff;
    margin: 0;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, .8);
}

.view_inner_wrap h2 {
    font-size: 28px;
    font-weight: bold;
    line-height: 42px;
    letter-spacing: 2px;
    color: #fff;
    margin: 0;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, .5);
}

.view_inner_wrap span {
    font-size: 15px;
    letter-spacing: 1px;
    line-height: 20px;
    color: #ffF;
}

.view_inner_wrap .user {
    text-align: right;
    font-weight: bold;
    margin: 16px 0 0;
}

.view_inner_wrap .user a {
    color: #fff;
}

.view_inner_wrap .user a:hover {
    color: #ccc;
}

.body {
    padding: 24px 0 36px;
}

/* .container {
    width: 85%;
    min-width: 960px;
    max-width: 1680px;
    margin: auto;
    padding: 0;
} */

/* 下載頁面 */

.trial_view {
    width: 100%;
    padding: 96px 0;
}

.trial_view .content {
    width: 100%;
    text-align: center;
    margin: 0 0 72px;
}

.trial_view .content .text_box {
    display: inline-block;
    vertical-align: middle;
    /*margin: 0 0 0 96px;*/
}

.trial_view .content .text_box .detail {
    text-align: left;
}

.trial_view .content .text_box .detail+.detail {
    margin: 36px 0 0;
}

.trial_view .content .text_box .detail .title {
    margin: 0 0 12px;
}

.trial_view .content .text_box .detail .title img {
    width: 25px;
    margin: 0 8px 0 0;
}

.trial_view .content .text_box .detail .title h3 {
    font-size: 28px;
    font-weight: bold;
    line-height: 36px;
    letter-spacing: 2px;
    color: #333;
    display: inline-block;
    vertical-align: middle;
    margin: 0;
}

.trial_view .content .text_box .detail h4 {
    font-size: 15px;
    line-height: 25px;
    letter-spacing: .5px;
    color: #000e4c;
    margin: 0;
}

.trial_view .content .text_box .detail h4 span {
    color: #00cbff;
    font-weight: bold;
}

.trial_view .content .image_box {
    width: 600px;
    display: inline-block;
    vertical-align: middle;
    box-shadow: 12px 12px 0 0 #ffffff;
}

.trial_view .content .image_box img {
    /*width: 100%;*/
}

.trial_view .warning {
    width: 80%;
    background: #d2deff linear-gradient(to top, #cfd9df 0%, #e2ebf0 100%);
    text-align: center;
    padding: 36px;
    margin: 0 auto;
}

.trial_view .warning .image {
    width: 350px;
    display: inline-block;
    vertical-align: top;
}

.trial_view .warning .image img {
    width: 100%;
}

.trial_view .warning .text {
    display: inline-block;
    vertical-align: top;
    margin: 0 0 0 96px;
    text-align: left;
}

.trial_view .warning .text h3 {
    font-size: 28px;
    font-weight: bold;
    line-height: 36px;
    letter-spacing: 2px;
    color: #333;
    margin: 0 0 12px;
}

.trial_view .warning .text h4 {
    font-size: 15px;
    line-height: 25px;
    letter-spacing: .5px;
    color: #000e4c;
    margin: 0;
}

.trial_view .warning .text a {
    display: block;
    font-size: 15px;
    font-weight: bold;
    line-height: 25px;
    letter-spacing: .5px;
    color: #00f;
    margin: 36px 0 0;
}

/* 企業付費版 */

.APP_image {
    width: 50%;
    margin: 0 auto;
}

.APP_image img {
    width: 100%;
}

.wrap h3 {
    font-size: 20px;
    font-weight: bold;
    line-height: 30px;
    letter-spacing: 1px;
    color: #666;
    margin: 24px 0 0;
    text-align: center;
}

.wrap .block h5 {
    font-size: 16px;
    font-weight: bold;
    line-height: 25px;
    letter-spacing: 1px;
    color: #333;
    margin: 24px 0 0;
    text-align: center;
}

.wrap .block {
    margin: 0 0 96px;
}

.wrap .table_wrap {
    width: 70%;
    margin: 0 auto 36px;
}

.wrap table {
    width: 100%;
}

.wrap table tr {
    text-align: center;
}

.wrap table tr th {
    padding: 16px 0;
}

.wrap table tr td {
    padding: 12px 8px;
}

.wrap table tr h3 {
    font-size: 20px;
    font-weight: bold;
    line-height: 30px;
    letter-spacing: 1px;
    color: #666;
    margin: 0;
}

.wrap table tr h4 {
    font-size: 15px;
    line-height: 25px;
    letter-spacing: 1px;
    color: #333;
    margin: 0;
}

.wrap table tr h4.special {
    color: #000e4c;
    font-weight: bold;
}

.wrap table tr td:first-child h4 {
    font-size: 16px;
    text-align: left;
    color: #000;
    font-weight: bold;
}

.wrap table tr td h4 a {
    font-weight: bold;
}

.wrap .table_compare tr td {
    width: 25%;
    border-bottom: 1px solid #ccc;
}

.wrap .table_pay tr:first-child {
    border-bottom: 1px solid #000;
}

.wrap .text_box {
    width: 75%;
    padding: 32px;
    box-sizing: border-box;
    margin: 0 auto;
    text-align: center;
}

.wrap .text_box>div {
    text-align: left;
}

.wrap .text_box h4 {
    font-size: 24px;
    font-weight: bold;
    line-height: 35px;
    letter-spacing: 1px;
    color: #333;
    margin: 0 0 8px;
}

.wrap .text_box h5 {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: .5px;
    color: #333;
    margin: 0;
}

/* 快速上手 */

.use_wrap1 {
    text-align: left;
    padding: 36px 0;
}

.use_wrap {
    text-align: center;
    padding: 36px 0;
}

.use_wrap h3 {
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 1px;
    line-height: 28px;
    color: #333;
    margin: 18px 0;
}

.show_apart {
    margin: 16px 0 0;
}

.use_wrap h4 {
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 1px;
    color: #333;
    display: inline-block;
    vertical-align: middle;
    margin: 0 12px;
}

.use_wrap h4::before {
    content: '';
    width: 24px;
    height: 5px;
    display: inline-block;
    vertical-align: middle;
    margin: -4px 8px 0 0;
}

.use_wrap h4.often::before {
    background: #e28dbc;
}

.use_wrap h4.easy::before {
    background: #52d6f6;
}

.use_wrap .item {
    margin: 48px 0 0;
}

.use_wrap .item .inner {
    width: 70%;
    margin: 0 auto;
    background: rgba(210, 222, 255, .7);
    padding: 24px 0;
}

.use_wrap .item .use_box.arrow::after {
    content: '';
    width: 36px;
    height: 36px;
    background: url(../../images/new/use_arrow.png);
    background-size: contain;
    display: block;
    margin: 0 auto 36px;
}

.use_wrap .item .use_box a {
    width: 150px;
    height: 150px;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    margin: 0 24px 24px 24px;
    transition: .3s;
}

.use_wrap .item .use_box a:hover {
    box-shadow: 0 0 5px 0px rgba(0, 0, 0, .3);
}
.use_wrap .item a.tt {
    background: #d2deff;
}

.use_wrap .item a.often {
    background: #e28dbc;
}

.use_wrap .item a.easy {
    background: #52d6f6;
}

.use_wrap .item img {
    width: 90%;
    height: 90%;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
}

.table_login td {
    padding: 5px 0;
}

.table_login label {
    margin: 5px 0 5px 12px;
}

.new_ui {
    width: 44%;
    display: inline-block;
    vertical-align: top;
    margin: 0 2.5%;
}

.new_ui_in {
    width: 44%;
    display: inline-block;
    vertical-align: top;
    margin: 0 2.5%;
}

.controls input[type=submit] {
    width: 45%;
    max-width: 200px;
    margin: 0 8px 0 0;
}

.btn-new {
    width: 100%;
    max-width: 280px;
    font-size: 24px;
    color: #fff;
    display: inline-block;
    vertical-align: middle;
    padding: 16px 0;
    margin: 12px 0;
    text-align: center;
}

.choose_wrap {
    margin: 12px 0;
}

.choose_wrap ul {
    width: 100%;
    max-width: 360px;
    margin: 18px 0;
    font-size: 0;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, .3);
}

.choose_wrap ul li {
    width: 33.3%;
    text-align: center;
    display: inline-block;
    vertical-align: middle;
}

.choose_wrap ul li a {
    display: block;
    font-size: 16px;
    font-weight: bold;
    line-height: 42px;
    letter-spacing: 1px;
    background: #e0ecfd;
    color: #333;
    transition: .3s;
}

.choose_wrap ul li.active a {
    background: #66a6ff;
    color: #fff;
}

.choose_wrap ul li a:hover {
    background: #66a6ff;
    color: #fff;
}

.user_login {
    margin: 12px 0 0;
}

.choose_list {
    width: 100%;
}

.choose_list li {
    padding: 24px 0;
}

.choose_list li+li {
    border-top: 1px solid #ccc;
}

.choose_list .photo {
    width: 20%;
    display: inline-block;
    vertical-align: top;
    margin: 0 5% 0 0;
}

.choose_list .desc {
    width: 70%;
    display: inline-block;
    vertical-align: top;
}

.choose_list .desc .text-info {
    font-size: 24px;
    font-weight: bold;
    line-height: 32px;
    letter-spacing: 1px;
    color: #31708f;
    margin: 0;
}

.choose_list .desc p {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 1px;
    color: #333;
    margin: 24px 0;
}

.choose_list .desc .price {
    text-align: right;
}

.choose_list .text-error {
    margin: 0 0 12px;
    font-size: 28px;
    letter-spacing: 1px;
}

.choose_list table {
    width: 100%;
    max-width: 360px;
}

.choose_list table td {
    padding: 4px 0;
}

.well_well {
    width: 70%;
    margin: 0 auto;
}

.user_login_special {
    position: absolute;
    bottom: 24px;
    right: 24px;
    text-align: right;
    z-index: 10;
}

.user_login_special span {
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 1px;
    color: #fff;
}

.user_login_special a {
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 1px;
    color: #fff;
}

.user_login_special a:hover {
    color: rgb(255, 145, 145);
}

.faq_eznew {
    width: 100%;
    padding: 0 0 0 280px;
    box-sizing: border-box;
    position: relative;
}

.faq_eznew .left {
    position: absolute;
    top: 0;
    left: 0;
}

@media screen and (min-width: 1279.98px) {
    .m_show {
        display: none !important;
    }
}

@media screen and (max-width: 1279.97px) and (min-width: 1023.98px) {
    .m_show {
        display: none !important;
    }
    .main_view_wrap {
        height: auto;
        padding: 100px 0;
    }
    .trial_view .content .image_box {
        width: 45%;
    }
    .trial_view .warning {
        width: 90%;
        padding: 36px 0;
    }
    .trial_view .warning .image {
        width: 280px;
    }
}

@media screen and (max-width: 1023.97px) {
    .m_none {
        display: none !important;
    }
    .faq {
        display: block;
    }
    .layout {
        width: 90%;
        min-width: 300px;
        max-width: 840px;
    }
    header nav {
        width: 90%;
        min-width: 300px;
        max-width: 840px;
    }
    header nav .menu {
        position: fixed;
        width: 100%;
        height: 100vh;
        left: 100%;
        background: rgba(0, 15, 58, .9);
        padding: 100px 0 0;
        box-sizing: border-box;
        transition: .5s;
    }
    header nav .menu.active {
        transform: translate(-100%);
    }
    header nav .menu li {
        display: block;
        height: 60px;
        padding: 0 48px;
        box-sizing: border-box;
        text-align: center;
    }
    header nav .menu li a {
        padding: 0;
    }
    header nav .menu li a p {
        font-size: 18px;
        letter-spacing: 2px;
    }
    .main_view_wrap::after {
        opacity: .5;
    }
    .main_view .text_box h2 {
        font-size: 24px;
    }
    .main_view .text_box h3 {
        font-size: 15px;
        line-height: 30px;
    }
    .wrap h2 {
        font-size: 32px;
        margin: 0 0 42px;
    }
    .wrap .item .apart {
        width: 100%;
        margin: 0 0 24px;
    }
    .wrap .item .s_title img {
        height: 60px;
    }
    .wrap .item .s_title h3 {
        display: inline-block;
        vertical-align: middle;
        margin: 0 0 0 16px;
    }
    .wrap .item .text ul {
        margin: 12px 0;
        width: 65%;
    }
    .wrap .content {
        width: 100%;
    }
    .wrap .image {
        width: 100%;
    }
    .view_wrap {
        padding: 100px 0;
    }
    .view_wrap .view .content {
        margin: 24px 0 0;
    }
    .view_wrap .view .content a {
        margin: 4px 0;
    }
    .view_wrap .view .content h5 {
        font-size: 15px;
    }
    .view_inner_wrap .user {
        text-align: left;
    }
    .footer p span {
        display: block;
    }
    .footer {
        padding: 24px 0;
    }
    .trial_view {
        padding: 48px 0;
    }
    .trial_view .content {
        margin: 0 0 36px;
    }
    .trial_view .content .image_box {
        width: 95%;
        box-shadow: 8px 8px 0 0 #ffffff;
    }
    .trial_view .content .text_box {
        width: 80%;
        margin: 48px 0 0;
    }
    .trial_view .warning {
        width: 100%;
        padding: 24px 18px;
    }
    .trial_view .warning .image {
        width: 100%;
    }
    .trial_view .warning .text {
        margin: 24px 0 0;
    }
    .trial_view .warning .text h4 {
        font-size: 14px;
    }
    .APP_image {
        width: 100%;
    }
    .wrap h3 {
        font-size: 22px;
    }
    .wrap h3 span {
        display: block;
    }
    .wrap .table_wrap {
        width: 100%;
        overflow-x: scroll;
        white-space: nowrap;
    }
    .wrap table tr td {
        padding: 4px;
    }
    .wrap table tr h3 {
        font-size: 22px;
    }
    .wrap table tr h4 {
        font-size: 14px;
        letter-spacing: 0;
    }
    .wrap table tr td:first-child h4 {
        font-size: 15px;
    }
    .wrap .block h5 {
        font-size: 15px;
    }
    .wrap .text_box {
        width: 100%;
        padding: 12px;
    }
    .use_wrap .item .inner {
        width: 100%;
    }
    .use_wrap .item .use_box a {
        width: 200px;
        height: 200px;
    }
    .table_login {
        width: 100%;
        display: inline-block;
        overflow-x: scroll;
    }
    .table_login tbody {
        white-space: nowrap;
    }
    .new_ui {
        width: 100%;
        margin: 0 0 32px;
    }
    .new_ui_in {
        width: 100%;
        margin: 0 0 16px;
    }
    .new_ui:last-child {
        padding: 24px 0 0;
        border-top: 1px solid #ccc;
    }
    .choose_list .photo {
        width: 100%;
        margin: 0 0 12px;
        box-sizing: border-box;
    }
    .choose_list .photo img {
        width: 60%;
    }
    .choose_list .desc {
        width: 100%;
    }
    .well_well {
        width: 100%;
    }
    .faq_new .left {
        position: static;
    }
    .control_a input[type=submit] {
        width: 100%;
        max-width: 325px;
        margin: 8px 0 0;
    }
    .control_a {
        text-align: left;
    }
    .faq_eznew {
        padding: 0;
    }
    .faq_eznew .left {
        position: static;
        margin: 0 0 12px;
    }
    @media screen and (min-width: 768px) and (max-width: 1023.97px) {
        header nav .menu {
            max-width: 300px;
        }
        header nav .menu.active {
            box-shadow: -3px 0 10px 0 rgba(0, 0, 0, .3);
        }
        .wrap .item .text h4 {
            font-size: 14px;
            line-height: 25px;
            letter-spacing: 0;
        }
        .wrap .item .apart {
            width: 33.3%;
        }
        .wrap .item .text ul {
            width: 85%;
        }
        .view_wrap .view .content a {
            display: block;
            margin: 8px auto;
        }
        .trial_view .content .text_box {
            width: 50%;
            margin: 0 0 0 5%;
        }
        .trial_view .content .image_box {
            width: 45%;
        }
        .trial_view .content .text_box .detail h4 {
            font-size: 14px;
            line-height: 22px;
            letter-spacing: 0;
        }
        .trial_view .content .text_box .detail+.detail {
            margin: 18px 0 0;
        }
        .trial_view .warning .image {
            width: 40%;
        }
        .trial_view .warning .text {
            width: 55%;
            margin: 0 0 0 5%;
        }
        .APP_image {
            width: 80%;
        }
        .wrap h3 span {
            display: inline;
        }
        .use_wrap .item .use_box a {
            width: 150px;
            height: 150px;
        }
        .choose_list .photo {
            width: 30%;
            margin: 0 5% 0 0;
        }
        .choose_list .photo img {
            width: 100%;
        }
        .choose_list .desc {
            width: 60%;
        }
        .control_a input[type=submit] {
            width: 100px;
            margin: 0;
        }
        .faq_new .left {
            position: absolute;
            width: 180px;
        }
        .control_a {
            text-align: right;
        }
        .faq_eznew {
            padding: 0 0 0 280px;
        }
        .faq_eznew .left {
            position: absolute;
        }
    }
}