/*table*/
table {
    display: inline-block;
    border-collapse: collapse;
    border-spacing: 0;
    color: #333;
    text-align: center;
}

table a {
    color: #333;
    text-decoration: underline;
}

table a:hover {
    color: #333;
}

table tr {
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s;
}

table tr td {
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s;
}

tbody tr:not(:first-child):hover {
    background: rgb(230, 230, 230);
}

tbody tr:not(:first-child):hover td {
    border-color: #cdcdcd;
}

tbody tr:first-child td {
    height: 50px;
    font-size: 20px;
    font-weight: 300;
}

tbody tr:first-child td:nth-child(2) {
    font-size: 24px;
}

tbody tr:nth-child(2n) {
    background: #f5f5f5;
}

tbody tr td {
    width: 30%;
    padding: 15px 0;
    font-weight: bold;
    font-size: 15px;
    position: relative;
}

tbody tr td:first-child {
    width: 40%;
    text-align: left;
    padding-left: 17px;
    font-weight: normal;
    font-size: 14px;
}

tbody tr:not(:first-child) td:not(:first-child) {
    color: gray;
}

tbody tr:first-child td:nth-child(2) {
    border-top: 1px solid #ddd;
}

tbody tr:last-child td:nth-child(2) {
    border-bottom: 1px solid #ddd;
}

tbody tr td:nth-child(2) {
    border-right: 1px solid #ddd;
    border-left: 1px solid #ddd;
}

tbody .yes,
tbody .icon-ok {
    color: #5cb85c !important
}

tbody .icon-remove {
    color: gray;
}
.home-panel,
.home-panel * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.home-max-width {
    position: relative;
    margin: 0 auto;
    width: 100%;
    max-width: 1050px;
    /*padding: 0 10px;*/
}
/*Common*/
.home-bg-pub {
    background: url("/images/bg2.jpg") center;
}

.home-gray-background {
    background: #f5f5f5;
}

.home-white-background {
    background: #fff;
}   

.home-gray-border-bottom {
    border-bottom: 1px solid #e5e5e5;
}

.home-white-link {
    color: white;
}

/* Slider */
.home-flat-mask-container {
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.home-flat-mask-container.demo1 {
    left: 7px;
    width: 91px;
    height: 121px;
}

.home-flat-mask-container.demo2 {
    left: 4px;
    width: 126px;
    height: 95px;
}

.home-flat-mask-container.demo3 {
    left: 7px;
    width: 91px;
    height: 121px;
}

.home-flat-mask-container.demo4 {
    left: 7px;
    width: 91px;
    height: 121px;
}

.home-flat-mask-container.demo5 {
    left: 4px;
    width: 126px;
    height: 95px;
}

.home-flat-mask-container.demo6 {
    left: 7px;
    width: 91px;
    height: 121px;
}

.home-flat-mask {
    height: 300%;
    width: 300%;
    position: absolute;
    bottom: 20%;
    right: 20%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));
    background: -webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));
    background: -moz-linear-gradient(-45deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));
    background: -o-linear-gradient(-45deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));
    background: -ms-linear-gradient(-45deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));
}


.home-star {
    background: url("https://static.pubhtml5.com/web/images/home/star.png") repeat-x;
}

.home-star-half-empty {
    background: url("https://static.pubhtml5.com/web/images/home/star-half-empty.png") repeat-x;
}

.home-star,
.home-star-half-empty {
    width: 24px;
    height: 24px;
    display: inline-block;
    position: relative;
    top: 5px;
}



/*smooth button*/
.button-smooth {
    display: inline-block;
    cursor: pointer;
    white-space: nowrap;
    border: 1px solid white;
    padding: 14px 22px;
    font-size: 24px;
    line-height: 24px;
    border-radius: 3px;
    color: white;

    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-weight: bold;

    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s;
}

.button-smooth:hover {
    background: #fff
}

.button-smooth-green:hover {
    color: #6bc30d;
}

.button-smooth-gray:hover {
    color: #555;
}

/*section*/
.home-section-container {
    padding: 30px 15px;
    text-align: center;
    color: #000;
    overflow: hidden;
}

.home-section-container > h1 {
    font-size: 40px;
    color: #333;
    font-weight: 300;
    line-height: 55px;
    margin-bottom: 20px;
    margin-top: 0px;
}

.home-section-container > h2 {
    font-size: 28px;
    line-height: 30px;
    color: #333;
    font-weight: 300;
    margin-bottom: 40px;
}
/* #CC9900 */

.home-view-more-link {
    font-size: 19px;
    text-decoration: underline;
}

/*banner*/
.home-banner-container {
    position: relative;
    padding: 40px 0;
    /*height: 800px;*/
    color: white;
    text-shadow: 1px 1px 3px #3f3f3f;
    overflow: hidden;

    background: url("//static.pubhtml5.com/web/images/home/bg1.jpg") no-repeat center;
    background-size: cover;
}

.home-banner-container h1 {
    color: white;
    font-size: 42px;
    line-height: 42px;
    margin: 0;
}

.home-banner-container h2 {
    color: white;
    font-weight: 300;
    font-size: 30px;
    margin-bottom: 20px;
}

/* .home-banner-button-container > h4 {
    font-size: 20px;
    line-height: 30px;
    color: #CC9900;
    font-weight: 300;
    margin-bottom: 5px;
} */

.home-banner-container h3 {
    color: #CC9900;
    font-weight: 300;
    font-size: 18px;
    /*margin-bottom: 105px;*/
}

.home-banner-container h3>.bubble-text {
    position: relative;
    background-color: #D3D9E2;
    padding: 0 10px;
    margin-left: 10px;
    color: #3C4D67;
    border-radius: 4px;
    text-shadow:none;
}
.home-banner-container h3>.bubble-text>.bubble-icon {
    position:absolute;
    right:100%;
    top:35%;
    width:0;
    height:0;
    border-width:5px;
    border-style:solid;
    border-color:transparent;
    border-right-width:7px;
    border-right-color:currentColor;
    color:#dddddd;
}

.home-banner-container h3 a:hover {
    text-decoration: underline;
}

.home-banner-demo-container {
    /*width: 677px;
    margin: 0px auto;
    position: relative;*/
    max-width: 620px;
    min-width: 350px;
    margin: 0px auto;
    position: relative;
    width: 100%;
    padding: 0 35px;
}

.home-banner-demo-container > .home-cs-angle-button {
    margin-top: -86px;
}

.home-banner-demo-img-container {
    position: relative;
    cursor: pointer;
}

.home-banner-demo-ul-1,
.home-banner-demo-ul-2 {
    text-align: center;
    position: relative;
    background: url("https://static.pubhtml5.com/web/images/home/shelf-2.png") center 70px no-repeat;
    width: 598px;
    /*height: 168px;*/
    height: 238px;
    margin: 0 auto;
}

.home-banner-demo-ul-2 {
    margin-top: -70px;
}

.home-banner-demo-ul-1 > li,
.home-banner-demo-ul-2 > li {
    float: left;
    position: relative;
    /*margin: -41px -53px 0px 86px;*/
    margin: 0px -53px 0px 86px;
}

.home-banner-demo-ul-1 > li.tall {
    /*top: -29px;*/
}

.home-banner-demo-ul-2 > li.tall {
    /*top: -29px;*/
}

.home-banner-demo-ul-1 > li.short {
    top: 29px;
}

.home-banner-demo-ul-2 > li.short {
    top: 29px;
}

.home-banner-demo-ul > li > p {
    font-size: 13px;
    padding-bottom: 5px;
}

.home-banner-demo-img {
    position: relative;
    display: block;
}

.home-banner-demo-thum {
    position: relative;
    display: block;
    width: 91px;
    height: 129px;
}
.home-banner-demo-land-1{
    position: absolute;
    width: 1px;
    background: rgb(204, 204, 204);
    height: 128px;
    top: 1px;
    left: 90px;
}
.home-banner-demo-land-2{
    position: absolute;
    width: 1px;
    background: rgb(255, 255, 255);
    height: 126px;
    top: 2px;
    left: 91px;
}
.home-banner-demo-land-3{
    position: absolute;
    width: 1px;
    background: rgb(204, 204, 204);
    height: 124px;
    top: 3px;
    left: 92px;
}
.home-banner-demo-land-4{
    position: absolute;
    width: 1px;
    background: rgb(255, 255, 255);
    height: 122px;
    top: 4px;
    left: 93px;
}

.home-banner-demo-thum-acr {
    position: relative;
    display: block;
    width: 142px;
    height: 109px;
}


.home-banner-demo-new {
    position: absolute;
    right: -1px;
    top: 3px;
    z-index: 1;
}

.home-banner-demo-new.tall {
    top: -1px;
}
.home-banner-demo-new.tall-2 {
    top: -3px;
    right: -4px;
}

.home-banner-demo-new.new-2 {
    right: 6px;
    top: -2px;
}

.home-banner-demo-new.new-3 {
    right: -5px;
    top: -4px;
}

.home-flat-mask-container {
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    /*background: gray;*/
}

.home-flat-mask-container.demo1 {
    left: 4px;
    top: 5px;
    width: 94px;
    height: 125px;
}

.home-flat-mask-container.demo2 {
    left: 4px;
    top: 9px;
    width: 124px;
    height: 93px;
}

.home-flat-mask-container.demo3 {
    left: 3px;
    top: 4px;
    width: 94px;
    height: 126px;
}

.home-flat-mask-container.demo4 {
    left: 3px;
    top: 4px;
    width: 95px;
    height: 126px;
}

.home-flat-mask-container.demo5 {
    left: 4px;
    top: 9px;
    width: 124px;
    height: 93px;
}

.home-flat-mask-container.demo6 {
    left: 3px;
    top: 4px;
    width: 95px;
    height: 126px;
}

.home-flat-mask-container.demo-Brattdecor {
    left: 4px;
    top: 9px;
    width: 124px;
    height: 93px;
}

.home-flat-mask-container.demo-captain {
    left: 3px;
    top: 4px;
    width: 95px;
    height: 126px;
}

.home-flat-mask-container.demo-HM {
    left: 3px;
    top: 4px;
    width: 95px;
    height: 126px;
}

.home-flat-mask-container.demo-ipad-air2 {
    left: 4px;
    top: 9px;
    width: 124px;
    height: 93px;
}

.home-flat-mask-container.demo-mac {
    left: 11px;
    top: 2px;
    width: 91px;
    height: 129px;
}

.home-flat-mask-container.demo-mac-2 {
    width: 91px;
    height: 129px;
}

.home-flat-mask-container.demo-lv {
    left: 11px;
    top: 2px;
    width: 90px;
    height: 129px;
}
.home-flat-mask-container.demo-lv-2 {
    width: 90px;
    height: 129px;
}

.home-flat-mask-container.demo-viz {
    left: 3px;
    top: 4px;
    width: 95px;
    height: 126px;
}

.home-flat-mask {
    height: 300%;
    width: 300%;
    position: absolute;
    bottom: 20%;
    right: 20%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));
    background: -webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));
    background: -moz-linear-gradient(-45deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));
    background: -o-linear-gradient(-45deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));
    background: -ms-linear-gradient(-45deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));
}

.home-banner-button-container {
    position: relative;
    margin-top: -65px;
    /*top: -65px;*/
}

.home-banner-button-container > h4 {
    font-size: 15px;
    line-height: 30px;
    color: #CC9900;
    font-weight: 300;
    margin-bottom: 5px;
}



.home-banner-button-container a {
    color: white;
    font-size: 16px;
    text-decoration: underline;
    margin-right: 10px;
}

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

.home-banner-button-container a:hover {
    color: white;
}

.home-banner-upload-button {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.home-banner-button-text {
    position: absolute;
    top: 11px;
    left: 0;
    right: 0;
    text-align: center;
    text-shadow: none;
    text-transform: uppercase;
    color: white;
    font-weight: bold;
    line-height: 28px;
    text-shadow: 0px 1px 1px #CFCFCF,0px 2px 1px #666666;
}

.home-banner-button-text p:nth-child(1) {
    font-size: 18px;
}

.home-banner-button-text p:nth-child(2) {
    font-size: 12px;
}

.home-banner-bottom-container {
    display: inline-block;
    overflow: hidden;
    position: relative;
    /*top: -56px;*/
    text-transform: uppercase;
}

.home-banner-bottom-container > li {
    float: left;
    margin: 5px;
    border: 1px solid white;
    cursor: pointer;
    padding: 5px 12px;
    font-weight: bold;

    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s;
}

.home-banner-bottom-container > li:hover {
    background: white;
    color: rgb(100, 100, 100);
    text-shadow: none;
}

/*cnet*/ 
.home-cnet-container {
    padding: 20px 10px;
    background: url("https://static.pubhtml5.com/web/images/home/cnet-2.png") no-repeat 0px 20px;
}

.home-cnet-container > p {
    padding-left: 250px;
    color: #444;
}

.home-cnet-container > p:last-child {
    line-height: 22px;
}

.home-cnet-container > p:last-child {
    margin-top: 20px;
    text-align: right;
}

/*What*/ 
.home-what-container h2 {
    margin-bottom: 33px;
}

.home-what-container > p {
    font-size: 15px;
    line-height: 30px;
    color: #333;
}

.home-how-video-outer-container {
    margin-bottom: 40px;
}

.home-how-video-container {
    height: 530px;
    width: 100%;
    max-width: 930px;
    margin: 0 auto;
    position: relative;
}

.home-how-video-shot {
    height: 100%;
    width: 100%;
    background: url("/images/home/video.jpg") no-repeat;
    cursor: pointer;
    position: absolute;
    background-size: cover;
    background-position: center center;
}

.home-how-video-iframe {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.home-how-video-shadow {
    background: url("//static.pubhtml5.com/web/images/home/home-video-shadow.jpg") no-repeat center;
    background-size: cover;
    height: 25px;
    width: 100%;
    margin: 0 auto;
    position: absolute;
    left: 0;
    top: 100%;
}

.home-how-video-play-btn {
    position: absolute;
    left: 50%;
    margin-left: -75px;
    top: 50%;
    margin-top: -75px;
    width: 150px;
    height: 150px;
    background: url("//static.pubhtml5.com/web/images/home/home-video.png") no-repeat -942px -10px;
}

.home-how-video-shot:hover .home-how-video-play-btn {
    background-position: -942px -170px;
}

/*how*/
.home-how-step-ul {
    display: inline-block;
}

.home-how-step-ul > li {
    /* float: left; */
    /* width: 210px; */
    /* border: 1px solid #ddd; */
    padding: 10px 8px;
    /* margin: 0 10px; */
    /* height: 270px; */
    cursor: pointer;
    position: relative;
    top: 0px;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.home-how-step-ul > li:hover {
    position: relative;
    top: -20px;
}
.home-how-step-inner {
    border: 1px solid #ddd;
    padding: 20px 10px;
    min-height: 330px;
}

.home-how-step-icon {
    width: 135px;
    height: 135px;
    background: green;
    display: inline-block;
    background: url("https://static.pubhtml5.com/web/images/home/home-how-icon.png") no-repeat;
}

.home-how-step-ul > li:nth-child(1) .home-how-step-icon {
    background-position: 12px 14px;
}

.home-how-step-ul > li:nth-child(2) .home-how-step-icon {
    background-position: 9px -122px;    
}

.home-how-step-ul > li:nth-child(3) .home-how-step-icon {
    background-position: -157px 15px;
}

.home-how-step-ul > li:nth-child(4) .home-how-step-icon {
    background-position: -156px -122px;
}

.home-how-step-title {
    font-size: 21px;
    padding: 10px 0;
    color: #333;
}

.home-how-step-desc {
    font-size: 13px;
    color: #333;
    line-height: 22px;
}

/*carousel slider*/
.home-cs-container {
    margin-top:38px;
}

.home-cs-panel {
    position: relative;
    width: 100%;
    max-width: 999px;
    margin: 0 auto;
    padding: 0 40px;
}

.home-cs-angle-button {
    font-size: 74px;
    position: absolute;
    top: 50%;
    z-index: 1;
    cursor: pointer;
    color: #ccc;
    /*margin: 0 -40px;*/
    margin-top: -37px;
}

.home-cs-angle-button:hover {
    color: #5cb85c;
}

.home-cs-angle-button:active {
    color: #57ad57;
}

.home-cs-angle-button.prev {
    left: 0px;
}

.home-cs-angle-button.next {
    right: 0px;
}

.home-cs-control-panel {
    display: inline-block;
    width: auto !important;
}

.home-cs-control-panel > li {
    width: 60px !important;
    height: 16px !important;
    margin: 10px !important;
    border-radius: 15px !important;
    background: #ccc;
}

/*category*/
.home-cate-row {
    display: inline-block;
}

.home-cate-row > li {
    float: left;
    border: 1px solid #eee;
    margin: 8px 10px;
    padding: 2px;
    box-shadow: 0px 1px 1px #f1f1f1;
}

.home-cate-row > li > a {
    display: block;
}

.home-cate-img-container {
    position: relative;
}



.home-cate-row img {
    display: block;
    width: 222px;
    height: 240px;
}

.home-cate-row p {
    font-size: 16px;
    padding: 10px 0;
    font-family: Arial;
    color: #000;
}

.home-cate-row p:hover {
    opacity: 0.5;
}

.home-scale-mask {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    overflow:visible;
    border:0px solid rgba(0,0,0,0.7);
    -moz-box-sizing:border-box;
    -webkit-box-sizing:border-box;
    box-sizing:border-box;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;

}

.home-scale-mask:hover {
    opacity: 1;
    border-left: 111px solid rgba(0,0,0,0.6);
    border-right: 111px solid rgba(0,0,0,0.6);
    border-top: 120px solid rgba(0,0,0,0.6);
    border-bottom: 120px solid rgba(0,0,0,0.6);
}

.home-scale-mask span {
    background: url("//static.pubhtml5.com/web/images/home/home-cate-open.png");
    position:relative;
    top: -10px;
    left: -10px;
    opacity:0;
    color: white;
    display: inline-block;
    width: 20px;
    height: 20px;

   -webkit-transform:scale(0,0);
   -moz-transform:scale(0,0);
   -o-transform:scale(0,0);
   -ms-transform:scale(0,0);
   transform:scale(0,0);

   -webkit-transition: -webkit-transform 0.2s 0.1s ease-in, opacity 0.1s ease-in-out;
   -moz-transition: -moz-transform 0.2s 0.1s ease-in, opacity 0.1s ease-in-out;
   -o-transition: -o-transform 0.2s 0.1s ease-in, opacity 0.1s ease-in-out;
   -ms-transition: -ms-transform 0.2s 0.1s ease-in, opacity 0.1s ease-in-out;
   transition: transform 0.2s 0.1s ease-in, opacity 0.1s ease-in-out;
}

.home-scale-mask:hover span {
    opacity:1;

    -webkit-transform:scale(1,1);
    -moz-transform:scale(1,1);
    -o-transform:scale(1,1);
    -ms-transform:scale(1,1);
    transform:scale(1,1);

    -webkit-transition-delay:0.3s;
    -moz-transition-delay:0.3s;
    -o-transition-delay:0.3s;
    -ms-transition-delay:0.3s;
    transition-delay:0.3s;
}

/*features*/
.home-fea-container {

}

.home-fea-container > h2 {
    font-size: 20px;
    margin-bottom: 40px;
}

.home-fea-panel {

}

.home-fea-row {
    display: inline-block;
    width: 100%;
    margin-bottom: 40px;
}

.home-fea-img > img {
    max-width: 100%;
}

.home-fea-text {
    text-align: left;
    margin-top: 17px;
}

.home-fea-text > h1 {
    font-size: 34px;
    line-height: 42px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 300;
}

.home-fea-text > h2 {
    font-size: 15px;
    line-height: 26px;
    margin-bottom: 13px;
    color: #222;
    font-weight: normal;
}

.home-fea-panel > .home-fea-row:nth-child(2n) > .home-fea-text,
.home-fea-panel > .home-fea-row:nth-child(2n+1) > .home-fea-img {
    float: left;
}

.home-fea-panel > .home-fea-row:nth-child(2n+1) > .home-fea-text,
.home-fea-panel > .home-fea-row:nth-child(2n) > .home-fea-img {
    float: right;
}

.home-fea-panel .button-pure {
    width: 126px;
    font-weight: bold;
    display: inline-block;
    padding: 0px;
    margin-right: 10px;
    font-size: 13px;
    border-radius: 2px;
    line-height: 28px;
    height: 28px;
}

.home-fea-panel .button-pure .fa {
    margin-right: 7px;
}

/*why*/
.home-why-container h1 {
    margin-bottom: 60px;
}
.home-why-container > table {
    padding: 0;
}
/*Get Started*/
.home-get-started-title {
    margin: 20px auto 55px;
    font-size: 49px;
    line-height: 62px;
    text-align: center;
    color: white;
}

.home-get-started-desc {
    line-height: 30px;
    text-align: center;
    color: white;
    font-size: 18px;
    margin: 50px 0 15px 0;
}

.home-get-started-desc a {
    color: white;
    text-decoration: underline;
}

.home-get-started-desc a:hover {
    color: white;
}

/*client*/
.home-client-container {

}

.home-client-container > h1 {
    margin-bottom: 40px;
}

.home-client-desc {
    font-size: 18px;
    line-height: 30px;
}

.home-client-desc a {
    font-size: 28px;
    margin: 0px 2px;
}

.home-client-desc a:hover {
    text-decoration: underline;
}

.home-client-slider-container p {
    font-size: 25px;
    font-weight: 300;
    color: #8F8F8F;
    margin: 20px 0px;
    line-height: 40px;
}

.home-client-slider-container img {
    margin: 10px 0 40px 0;
    height: 80px;    
}

/*Demo*/
.home-demos,
.home-cate-panel {
    position: relative;
    margin: 0 auto;
}
.home-cate-panel {
    padding: 0 30px;
}

.home-demos > li {
    margin: 0px 0px 24px;
    padding: 0 10px;
    width: 242px;
    height: 175px;
    overflow: hidden;
    float: left;
    line-height: 20px;
}

.home-demos > li > a {
    display: inline-block;
    position: relative;
}

.home-demos > li > p {
    padding-top: 0px;
    color: #333;
    font-weight: bold;
    font-size: 13px;
}

.home-demos img {
    width: 222px;
    display: block;
    box-shadow: 0px 2px 3px rgba(174, 174, 174, 1);
    height: 150px;
}

.home-demos .home-scale-mask:hover {
    border-left-width: 111px;
    border-right-width: 111px;
    border-top-width: 75px;
    border-bottom-width: 75px;
}


.home-bookcase-iframe {
    position: relative;
    width: 100%;
    max-width: 920px;
    height: 530px;
    margin: 0 auto;
}


.home-banner-demo-ul {
    /*position: relative;
    display: inline-block;
    text-align: center;
    width: 100%;*/
    position: relative;
    display: inline-block;
    text-align: center;
    max-width: 100%;
    padding-top: 80px;
}
.home-banner-demo-ul > li {
  /*  display: inline-block;
    position: relative;
    margin: 0 17px;
    margin-top: -72px;
    margin-bottom: 103px;*/
    display: inline-block;
    position: relative;
    margin: 0 31px;
    margin-top: -72px;
    margin-bottom: 103px;
}
.home-banner-demo-ul > .demo-self {
    position: absolute;
    height: 100%;
}
.home-banner-demo-ul > .shelf-left {
    left: 0;
    width: 82px;
    background: url("/images/home/shelf1.png");
}
.home-banner-demo-ul > .shelf-mid {
    left: 82px;
    right: 82px;
    background: url("/images/home/shelf2.png");
}
.home-banner-demo-ul > .shelf-right {
    right: 0;
    width: 82px;
    background: url("/images/home/shelf3.png");
}


@media(max-width: 680px) {
    .tbody tr td:first-child {
        padding-left: 0;
        font-size: 12px;
    }
    tbody tr:first-child td:nth-child(2) {
        font-size: 16px;
    }
    tbody tr:first-child td {
        font-size: 14px;
    }
    .home-cnet-container > p {
        padding-left: 0;
    }
    .home-cnet-container > p.text {
        padding-top: 75px;
    }

    .home-cs-panel {
        padding: 0;
    }
    #home-client-slider .home-cs-angle-button {
        display: none;
    }
}

@media(min-width: 1020px) {
    .home-demos {
        width: 968px;
    }
}
@media(min-width: 775px) and (max-width: 1019px) {
    .home-demos {
        width: 726px;
    }
}
@media(min-width: 535px) and (max-width: 774px) {
    .home-demos {
        width: 484px;
    }
}
@media (max-width: 534px) {
    .home-demos {
        max-width: 100%;
    }
    .home-demos > li {
        float: none;
        position: relative;
        margin-left: auto;
        margin-right: auto;
    }
}

@media(min-width: 1105px) {
    .home-cate-panel {
        width: 1052px;
    }
}

@media(min-width: 1280px) {
  .nav-container {
      width: 1280px;
  }

  .home-banner-demo-container {
      max-width: 750px;
  }

  .home-max-width {
      max-width: 1200px;
  }

  .home-cate-panel {
    width: 1280px !important;
  }

  .home-cs-panel {
    max-width: 1280px;
  }
}

@media(min-width: 605px) and (max-width: 1104px) {
    .home-cate-panel {
        width: 556px;
    }
}
@media(max-width: 604px) {
    .home-cate-panel {
        width: 308px;
    }

    .home-banner-container h1 {
      font-size: 24px;
      line-height: 36px;
      font-weight: 400;
    }

    .home-banner-container h2 {
      font-size: 18px;
    }

    .home-section-container h1 {
      font-size: 24px;
      line-height: 1.5;
      margin: 0;
      font-weight: bold;
    }

    .home-section-container h2 {
      font-size: 18px;
      line-height: 1.5;
      margin: 10px 0px;
      font-weight: 300;
    }

    .home-fea-panel .button-pure {
      font-size: 16px;
      line-height: 2;
      height: 32px;
    }

    .home-how-video-container {
      height: 300px;
   }

   .home-what-container > p {
       font-size: 16px;
       font-weight: 300;
   }

   .home-how-step-desc {
     font-size: 16px;
     line-height: 1.5;
     font-weight: 300;
   }

   .home-fea-text > div {
       display: flex;
       justify-content: center;
   }

   .home-get-started-title {
       font-size: 28px;
       line-height: 1.5;
   }

   .home-client-desc {
     line-height: 1.5;
     font-weight: 300;
   }

   .home-cs-control-panel > li {
     width: 16px !important;
   }

   .cc-main .home-panel {
     padding-bottom: 0;
   }

   .home-fea-panel .home-fea-display,
   .cc-new-download-bar {
       display: none;
   }

   .home-carsousel-inner {
    height: 400px;
  }

  .home-client-slider-container p {
      font-size: 18px;
      line-height: 1.6;
  }

  .cc-bottom-social-boxs {
    left: 0;
    top: 25px;
  }

  .cc-contact-ball {
    position: fixed;
    right: 8px;
    top: 82% !important;
    left: auto;
  }

}
@media(max-width: 370px) {
    #home-cate-slider .home-cs-angle-button {
        display: none;
    }
    .home-cate-panel {
        width: 248px;
        padding: 0px;
    }
}

@media(max-width: 450px) {
    .home-banner-demo-container {
        padding: 0;
    }
}