*{
    box-sizing: border-box;
}

body {
    margin: 0 auto;
    padding: 0;
    font-size: 12px;
    background: #ffffff;
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Ubuntu,Arial,sans-serif;
}

.clear{
    clear: both;
}

.flex{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.flex-column{
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}
.justify-center{
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.align-center{
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
/*提交中*/
/*动画旋转*/
@keyframes loading-roll {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform:rotate(360deg);
    }
}

input::-webkit-input-placeholder{
    color:#aaa;
}
input::-moz-placeholder{   /* Mozilla Firefox 19+ */
    color:#aaa;
}
input:-moz-placeholder{    /* Mozilla Firefox 4 to 18 */
    color:#aaa;
}
input:-ms-input-placeholder{  /* Internet Explorer 10-11 */
    color:#aaa;
}

header {
    background-color: #070415;
}
header .top-coupon{
    display: flex;
    display: -webkit-flex;
    display: -ms-flexbox;
    width: 100%;
    height: 50px;
    line-height: 50px;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 25px;
    cursor: pointer;
    letter-spacing: 1px;
    font-weight: bolder;
    background-color: #384a9c;
}
header .top-coupon .left-banner {
    padding-right:5px;
    flex-grow: 1;
    text-align: right;
    position: relative;
    color: #fff;
}
header .top-coupon .right-banner {
    padding-left:5px;
    flex-grow: 1;
    text-align: left;
}
header .top-coupon .right-banner i{
    font-size: 20px;
    margin-left: 20px;
    height: 50px;
    font-weight: lighter;
}
header .logo {
    display: inline-block;
}
header .logo img {
    height: 40px;
    vertical-align: middle;
}

header .navbar {
    display: flex;
    display: -webkit-flex;
    display: -ms-flexbox;
    justify-content: flex-start;
    line-height: 80px;
    height: 80px;
    margin: 0 auto;
    margin-left: 10%;
    margin-right: 10%;
}

header .navbar nav {
    flex-grow: 1;
    margin-left: 50px;
}

header .navbar nav li {
    list-style: none;
    margin: 0 20px;
    display: inline-block;
    height: 80px;
}

header .navbar nav li a{
    font-size: 20px;
    color: #fff;
    padding: 8px;
    text-decoration: none;
}

.content-wrapper .box > .title{
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    padding: 20px 0;
}
.content-wrapper .box > .brief{
    color: #999;
    text-align: center;
    font-size: 18px;
}
.content-wrapper .box > .detail{
    margin-top: 40px;
}

.content-wrapper .box1{
    /* background-image: url(https://www.import.io/wp-content/uploads/2019/07/homepage-mds-de-hero.jpg); */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    height: 670px;
}
.content-wrapper .box1 .mask{
    position: absolute;
    background: rgba(0, 0, 0, 0.2);
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1;
}
.content-wrapper .box1 .intro {
    position: absolute;
    left: 10%;
    top: 50%;
    z-index: 9;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform:translate(0, -50%);
    transform:translate(0, -50%);
}
.content-wrapper .box1 .intro .title{
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}
.content-wrapper .box1 .intro .brief{
    font-size: 50px;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
}
.content-wrapper .box1 .intro .detail{
    margin-top: 40px;
    font-size: 18px;
    color: #fff;
    white-space: nowrap;
}
.content-wrapper .box1 .intro .download{
    margin-top: 80px;
}
.content-wrapper .box1 .intro .download a{
    font-size: 36px;
    padding: 10px 40px 16px;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    background-color: #384a9c;
    white-space: nowrap;
}
.content-wrapper .box1 .intro .download a i{
    font-size: inherit;
    padding-right: 10px;
}
.content-wrapper .box1 .intro .download a:hover{
    background-color: #fff;
    color: #070b22;
}

.content-wrapper .box1 .intro .download-other{
    margin-top: 30px;
    font-size: 14px;
}
.content-wrapper .box1 .intro .download-other a{
    color: #fff;
    text-decoration: none;
}
.content-wrapper .box1 .intro .download-other a:hover{
    border-bottom: 1px solid #fff;
}

.content-wrapper .box6{
    background-color: #ffffff;
    padding: 40px 0;
    overflow: hidden;
}
.content-wrapper .box6 .logos{
    text-align: center;
    width: max-content;
    margin: 0 auto;
}
.content-wrapper .box6 .logos .logo{
    display: inline-block;
}
.content-wrapper .box6 .logos img{
    display: inline-block;
    margin: 0 20px;
    height: 60px;
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
}
.content-wrapper .box6 .logos img:hover{
    filter: grayscale(0);
    -webkit-filter: grayscale(0);
    cursor: pointer;
}

.content-wrapper .box4{
    background-color: #fbfcff;
    padding: 40px 0;
}

.content-wrapper .box4 .steps{
    padding: 30px 5%;
}
.content-wrapper .box4 .step{
    float: left;
    width: 33.33%;
    text-align: center;
}
.content-wrapper .box4 .step span.icon{
    display: inline-block;
    width: 144px;
    height: 144px;
    background-color: #efefef;
    border-radius: 50%;
    position: relative;
}
.content-wrapper .box4 .step span.icon i{
    color: #0f97ff;
    font-size: 90px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}
.content-wrapper .box4 .step p.title{
    position: relative;
    text-align: center;
    font-size: 34px;
    width: 310px;
    margin: 20px auto 10px auto;
    font-weight: 300;
}
.content-wrapper .box4 .step p.title:before{
    content: attr(data-step);
    font-size: 62px;
    color: #0f97ff;
    font-weight: 500;
    float: left;
    margin: -10px 10px 0 -50px;
}
.content-wrapper .box4 .step p.title small{
    color: #6b7b8c;
    display: block;
    padding-top: 20px;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.3em;
}

.content-wrapper .box2{
    background-color: #ffffff;
    padding: 30px 5%;
}
.content-wrapper .box2 .feature{
    float: left;
    width: 25%;
}
.content-wrapper .box2 .feature .wrapper{
    min-height: 200px;
    padding: 10px;
    margin: 10px;
    border-radius: 5px;
    border: 1px solid #fbfcff;
}
.content-wrapper .box2 .feature .wrapper:hover{
    border: 1px solid #ccc;
    cursor: pointer;
}
.content-wrapper .box2 .feature .wrapper .i{
    padding: 20px 0;
}
.content-wrapper .box2 .feature .wrapper .i img{
    height: 50px;
}
.content-wrapper .box2 .feature .wrapper .t{
    font-size: 20px;
    font-weight: 700;
}
.content-wrapper .box2 .feature .wrapper .d{
    margin-top: 6px;
    font-size: 15px;
    color: #999;
}

.content-wrapper .box5{
    background-color: #fbfcff;
    padding: 30px 5%;
}
.content-wrapper .box5 .brief a{
    color: inherit;
}
.content-wrapper .box5 .detail-box{
    width: fit-content;
    margin: 40px auto 20px;
    position: relative;
}
.content-wrapper .box5 .detail-box .angle{
    position: absolute;
    top: 45%;
    width: 30px;
    height: 30px;
    color: #999;
    text-align: center;
    line-height: 30px;
}
.content-wrapper .box5 .detail-box .angle:hover{
    cursor: pointer;
    color: #000;
}
.content-wrapper .box5 .detail-box .angle i{
    font-size: 20px;
}
.content-wrapper .box5 .detail-box .angle.previous{
    left: -40px;
}
.content-wrapper .box5 .detail-box .angle.next{
    right: -40px;
}
.content-wrapper .box5 .review-box{
    width: 1080px;
    overflow-x: scroll;
    -ms-overflow-style: none;
    overflow: -moz-scrollbars-none;
    position: relative;
}
.content-wrapper .box5 .review-box::-webkit-scrollbar{
    width: 0 !important;
}
.content-wrapper .box5 .reviews{
    text-align: center;
    width: max-content;
    position: relative;
}
.content-wrapper .box5 .review{
    display: inline-block;
    float: left;
    min-height: 350px;
    width: 300px;
    margin: 10px;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: lightgrey 0px 2px 5px;
}
.content-wrapper .box5 .review .stars{
    text-align: left;
}
.content-wrapper .box5 .review .stars i{
    font-size: 24px;
    color: #fec600;
}
.content-wrapper .box5 .review .title{
    text-align: left;
    font-size: 20px;
    font-weight: 700;
}
.content-wrapper .box5 .review .detail{
    text-align: left;
    font-size: 14px;
    color: #333333;
    font-style: italic;
    padding: 10px 0;
}
.content-wrapper .box5 .review .author{
    text-align: left;
    font-size: 14px;
    color: #737373;
    font-weight: 700;
}

.content-wrapper .box3{
    background-color: #ffffff;
    padding: 30px 5%;
}
.content-wrapper .box3 .downloads{
    text-align: center;
}
.content-wrapper .box3 .download {
    margin: 40px 0 40px;
    padding: 0 80px;
    display: inline-block;
    vertical-align: top;
}
.content-wrapper .box3 .download .logo {
    height: 100px;
    width: 100px;
    background-size: contain !important;
    margin: 0 auto;
    -ms-high-contrast-adjust: none;
}
.content-wrapper .box3 .download .logo.windows {
    background: url("../image/windows-logo.png") center center no-repeat;
}
.content-wrapper .box3 .download .logo.linux {
    background: url("../image/linux-logo.png") center center no-repeat;
}
.content-wrapper .box3 .download .logo.mac {
    background: url("../image/apple-logo.svg") center center no-repeat;
}
.content-wrapper .box3 .download .link-button {
    color: white;
    margin: 20px 0 5px;
    padding: 10px 0;
    width: 240px;
    background-color: #0f97ff;
    border: none;
    font-size: 20px;
    text-decoration: none;
    cursor: pointer;
    display: inline-block;
    font-weight: 600;
}
.content-wrapper .box3 .download .link-button:hover{
    background-color: rgba(35,171,255,1);
}
.content-wrapper .box3 .download .link-button img {
    position: relative;
    top: -2px;
    margin-right: 10px;
}
.content-wrapper .box3 .download .link-button small {
    display: block;
    margin-top: 0.75rem;
    color: rgba(255,255,255,0.65);
    font-size: 14px;
}
.content-wrapper .box3 .download .download-icon {
    display: inline;
}
.content-wrapper .box3 .download .download-icon-accessible {
    display: none;
}

.below-download-btn {
    border-bottom: 1px solid rgba(255,255,255,0.3);
    text-align: center;
    background: #01182b;
    height: 300px;
    padding-top: 75px;
}
.below-download-btn h3 {
    color: #fff;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 44px;
    margin-top: 20px;
}
.download-area {
    text-align: center;
}
.below-download-btn .free-download-btn {
    text-decoration: none;
    border: none;
    border-radius: 3px;
    background-color: #0f97ff;
    color: #fff;
    min-width: 150px;
    height: 46px;
    line-height: 46px;
    vertical-align: middle;
    font-size: 16px;
    padding: 12px 32px 12px 32px;
    transition: box-shadow .2s ease-in-out;
}
.below-download-btn .free-download-btn i,
.below-download-btn .free-download-btn span {
    margin: 0 4px;
    font-size: 18px;
}

footer{
    padding-top: 1.5rem!important;
    padding-bottom: 3.5rem!important;
}
footer.bg-dark {
    background-color: #01182b !important;
}
footer .footer-wrapper{
    margin: 0 auto;
    width: 1300px;
}
footer .list-wrapper{
    justify-content:space-between;
}
footer .list-wrapper > ul{
    padding:0 15px;
    margin: 0;
}
footer img.logo{
    height: 40px;
}
footer .list-unstyled{
    padding-left: 0;
    list-style: none;
}
footer li {
    font-size: 13px;
    line-height: 23px;
}
footer ul.list-inline>li {
    display: inline-block;
    padding: 10px;
}
footer ul.list-inline>li:first-child {
    display: inline-block;
    padding-left:0px;
}
footer a {
    font-size: inherit;
    color: #868e96;
    transition: all .5s ease;
    text-decoration: none;
}
footer a:hover {
    color: rgba(35,171,255,1);
    text-decoration: none;
}
footer .fa-lg {
    font-size: 16px;
    line-height: 24px;
}
footer p {
    color: #cfd2d6;
    margin-top: 10px;
    margin-bottom: 14px;
}
footer .summary{
    flex-grow: 1;
    -webkit-flex-grow: 1;
}
footer .summary .summary-wrapper{
    width:300px;
}
footer h5 {
    margin-top: 0;
    margin-bottom:10px;
    font-size: 15px;
}
footer h5 a {
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
}
footer h5 span{
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
}
footer .phone-number a,
footer .copyright {
    font-size: 14px;
}
footer .mr-2 {
    margin-right: .5rem!important;
    font-size: 18px;
}

#popVideo.modal-container{
    width: 970px;
    min-height: 600px;
    box-sizing:content-box;
    display: none;
    position: fixed;
    z-index: 10002;
    left: 50%;
    top: 50%;
    margin-left: -500px;
    margin-top: -305.5px;
    font-size: 15px;
    background: #eee;
    padding: 15px;
    border-radius: 12px;
}
#popVideo.modal-container .modalCloseBtn {
    position: absolute;
    left: 1000px;
    top: -8px;
    font-size: 26px;
    color: #eee;
    text-decoration: none;
}
#popVideo.modal-container .platform-info{
    text-align:center;
    margin-top:9px
}
#popVideo.modal-container .loading{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateY(-50%) translateX(-50%);
}
.lean-overlay{
    display: none;
    position: fixed;
    z-index: 10001;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    background: rgb(29, 41, 51) none repeat scroll 0% 0%;
    opacity: 0.8;
    overflow: auto;
}
.ipsicon {
    font-family: iconfont!important;
    font-style: normal;
    font-weight: 400;
    -webkit-text-stroke-width: .2px;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
}
.ipsicon-play::before {
    content: "\e78e";
}
.ipsicon-close:before {
    content: "\e642";
}

/**领取优惠券*/
.ui-mask{
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 999;
    opacity: 0.4;
    background-color: rgb(0, 0, 0);
}
.ui-modal{
    position: fixed;
    width: 680px;
    height: 440px;
    z-index: 999;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}
.ui-modal:focus{
    border:none;
    outline:none;
}
.ui-modal .close-layer {
    position: absolute;
    right: 0;
    top: 0;
    width: 30px;
    height: 30px;
    display: block;
    background-position: 0 0;
    background-repeat: no-repeat;

    text-indent: -9999rem;
    overflow: hidden;
}
.ui-modal .ui-modal-bd {
    padding: 0;
}
.ui-modal .newuser-container {
    width: 640px;
    height: 440px;
    overflow: hidden;
    text-align: center;
}
.ui-modal.ui-newuser-layer-dialog{
    background-position: 0 0;
    background-repeat: no-repeat;
    color: #fff;
}
.ui-modal .promotion-title {
    margin-bottom: 5px;
    font-size: 40px;
    line-height: 55px;
    height: 55px;
    overflow: hidden;
}
.ui-modal .promotion-subtitle {
    margin-bottom: 25px;
    font-size: 14px;
    line-height: 16px;
    height: 16px;
    overflow: hidden;
}
.ui-modal .newuser-coupon-info {
    width: 294px;
    height: 133px;
    padding: 0 0 0 20px;
    margin: 0 auto 25px;
    background-position:  -3px -50px;
    background-repeat: no-repeat;
}
.ui-modal .newuser-coupon-title {
    float: left;
    width: 20px;
    height: 123px;
    overflow: hidden;
    padding: 5px 0;
    font-size: 14px;
    writing-mode: tb-rl;
    -webkit-writing-mode: tb-rl;
}
.ui-modal .newuser-coupon-denomination {
    float: left;
    padding: 20px 0 0 20px;
    width: 250px;
    font-size: 72px;
    line-height: 80px;
}
.ui-modal .newuser-promotion-enter a {
    display: inline-block;
    font-size: 14px;
    color: #aa0014;
    padding: 0 25px;
    line-height: 35px;
    background-color: #fff;
    text-decoration: none;
}
.ui-modal .newuser-promotion-enter a:hover {
    text-decoration: underline;
}

.ui-sign-layer-dialog{
    background: #fff;
    display: block;
    width: 440px;
    height: auto;
}
.ui-modal.ui-sign-layer-dialog .close-layer{
    right:-35px;
}
.ui-modal .sign-container {
    color: #333;
    padding-bottom: 30px;
}
.ui-modal .sign-container form{
    text-align: center;
    margin: 10px 30px;
}
.ui-sign-layer-dialog input {
    width: 100%;
    height: 40px;
    color: #333;
    padding: 0 16px 0 10px;
    border: 1px solid #ebebeb;
    box-sizing: border-box;
    font-size: 14px;
    outline: 0;
    border-radius: 4px;
    appearance: none;
    -webkit-appearance: none;
    font-family: Roboto,'Open Sans',Helvetica,Arial;
}
.ui-sign-layer-dialog input:focus {
    border-color: #5b5b5b;
}

.ui-sign-layer-dialog form .group{
    margin-bottom: 20px;
}
.ui-sign-layer-dialog form .group.register{
    margin-bottom: 5px;
    text-align: center;
}

.ui-sign-layer-dialog .submit-wrapper{
    position: relative;
    margin: 30px auto;
    height: auto;
    padding: 10px 0;
}
.ui-sign-layer-dialog .submit-wrapper .spinner{
    display: none;
}
.ui-sign-layer-dialog .submit-wrapper.submit-running{
    pointer-events: none;
}
.ui-sign-layer-dialog .submit-wrapper.submit-running .spinner{
    line-height: 60px;
    position: absolute;
    left: 0px;
    top: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    background: rgba(1,1,1,.3);
    border-radius: 3px;
    display: block;
    pointer-events: none;
}
.ui-sign-layer-dialog .submit-wrapper.submit-running .fh-spinner{
    display: inline-block !important;
    -webkit-animation:loading-roll 1.5s infinite;
    -o-animation:loading-roll 1.5s infinite;
    animation:loading-roll 1.5s infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-timing-function: linear;
    -o-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-transform-origin:center;
    -moz-transform-origin:center;
    -ms-transform-origin:center;
    -o-transform-origin:center;
    transform-origin:center;
    font-size: 27px;
    color: #fff;
}
.ui-sign-layer-dialog .submit-wrapper input[type="submit"]{
    cursor: pointer;
    margin: 0px auto;
    display: block;
    width: 150px;
    height: 40px;
    line-height: 38px;
    padding: 0;
    border: 2px solid #0f97ff;
    color: #fff;
    background: #0f97ff;
    border-radius: 3px;
    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    -ms-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
}
.ui-sign-layer-dialog .submit-wrapper input[type="submit"]:hover {
    background-color: #1788e2;
    border-color: #1788e2;
    color: rgba(255, 255, 255, 1);
}

.ui-sign-layer-dialog .quick-oauth {
    height: 80px;

    display: flex;
    margin: 0 auto;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;

}
.ui-sign-layer-dialog .quick-oauth .oauth-title {
    position: relative;
}
.ui-sign-layer-dialog .quick-oauth .oauth-title .text {
    color: #999;
    font-size: 16px;
}
.ui-sign-layer-dialog .quick-oauth .oauth-item {
    position: relative;
    display: flex;
    justify-content: space-around;
    flex-grow: 1;
    align-items: flex-end;
}
.ui-sign-layer-dialog .quick-oauth .oauth-item .item {
    cursor: pointer;
    margin: 0 20px;
    height: 42px;
    width: 42px;
    text-align: center;
    background-image: url(../image/oauth-logo.png);
    background-repeat: no-repeat;
    background-size: 42px;
    background-position: top center;
}
.ui-sign-layer-dialog .quick-oauth .oauth-item .item.item-google {
    background-position: center -51px;
    background-size: 40px;
}
.ui-sign-layer-dialog .quick-oauth a {
    display: inline-block;
    font-weight: lighter;
    color: #4267b2;
    font-size: 14px;
    text-decoration: none;
}
.stack-tab-list{
    height: 46px;
    margin: 50px 0 20px;
    text-align: center;
    padding-inline-start: 0;
}
.stack-tab-list > .stack-tab{
    display: inline-block;
    position: relative;
    cursor: pointer;
    width: 100px;
    text-align: center;
    font-size: 14px;
    padding: 10px;
    text-transform: uppercase;
    white-space: nowrap;
    z-index: 1;
    font-family: Roboto,Open Sans,Helvetica,Arial;
}
.stack-tab-list > .stack-tab.active{
    color: #FF4747;
    font-weight: 600;
    border-bottom: none;
}
.stack-tab-list > .stack-tab::after {
    content: '';
    position: relative;
    display: block;
    width: 0;
    height: 2px;
    margin-top: 6px;
    font-weight: 600;
    background-color: #FF4747;
    left: 50%;
    -webkit-transition: all .3s ease-in;
    -moz-transition: all .3s ease-in;
    -ms-transition: all .3s ease-in;
    -o-transition: all .3s ease-in;
    transition: all .3s ease-in;
}
.stack-tab-list > .stack-tab.active::after{
    left: 0;
    width:100px;
}
.ui-sign-layer-dialog .tip-coupon{
    color: red;
    margin: 0 30px;
    line-height: 16px;
    font-size: 14px;
}
.ui-sign-layer-dialog .tip-coupon .fh{
    margin-right:5px;
}



@media screen and (min-width: 1400px) {
    .content-wrapper .box1 .intro .download-other {
        padding-left: 62px;
    }
}

@media screen and (max-width: 1400px){
    .content-wrapper .box1 .intro .brief{
        font-size: 42px;
    }
    .content-wrapper .box1 .intro .download{
        margin-top: 60px;
    }
    .content-wrapper .box1 .intro .download a{
        font-size: 30px;
    }
    .content-wrapper .box1 .intro .download-other {
        padding-left: 44px;
    }
    .content-wrapper .box1 .intro-video a img{
        width: 720px;
    }
    .content-wrapper .box2 .feature .wrapper .t{
        font-size: 18px;
    }
    .content-wrapper .box3 .download{
        padding: 0 50px;
    }
}

@media screen and (max-width: 1200px) {
    .content-wrapper .box1 .intro .brief{
        font-size: 36px;
    }
    .content-wrapper .box1 .intro .detail {
        margin-top: 32px;
        font-size: 16px;
    }
    .content-wrapper .box1 .intro .download{
        margin-top: 50px;
    }
    .content-wrapper .box1 .intro .download a{
        font-size: 24px;
    }
    .content-wrapper .box1 .intro .download-other {
        padding-left: 16px;
    }
    .content-wrapper .box1 .intro-video a img{
        width: 610px;
    }
    .content-wrapper .box2 .feature .wrapper .t{
        font-size: 16px;
    }
    .content-wrapper .box2 .feature .wrapper .d{
        font-size: 14px;
    }
    .content-wrapper .box5 .review-box{
        width: 720px;
    }
    .content-wrapper .box3 .download{
        padding: 0 28px;
    }
}


.content-wrapper.min-view .box1{
    height:440px;
}
.content-wrapper.min-view .intro .detail{
    margin-top: 10px;
}
.content-wrapper.min-view .intro .download{
    margin-top: 30px;
}
.content-wrapper.min-view .intro .download a{
    /*padding: 5px 10px 5px;*/
    padding: 9px 33px 9px;
    font-size: 24px;
}
.content-wrapper.min-view .intro .download-other{
    padding-left: 0;
    margin-top: 20px;
}
