@charset "UTF-8";

@font-face {
    src: local("Raleway Bold"), url(../font/Raleway-Bold.ttf);
    font-family: 'Raleway Bold';
}


/* 
    theme #0068b5
    2021 bg middle #2157f5
    2021 bg light #00faff
*/


/**********
    Basic
  **********/
* {
    padding: 0;
    margin: 0;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    position: relative;
    /* font-family: 'Raleway Bold', 'Open Sans', "微軟正黑體", Helvetica, Arial, sans-serif; */
    font-family: 'Open Sans', "微軟正黑體", Helvetica, Arial, sans-serif;
    font-size: 16.5px;
}

@media (max-width: 768px) {
    body {
        min-height: 100%;
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 20px 0 10px;
    line-height: 1.4;
}

h1 {
    font-size: 36px;
    margin-bottom: 40px;
}

h2 {
    font-size: 32px;
}

h3 {
    font-size: 30px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 22px;
    font-weight: 600;
}

h6 {
    font-size: 20px;
    font-weight: 600;
}

@media screen and (max-width: 767px) {
    h1 {
        font-size: 34px;
        margin-bottom: 20px;
    }

    h2 {
        font-size: 30px;
        margin: 1%;
    }

    h3 {
        font-size: 25px;
        margin: 1%;
    }

    h4 {
        font-size: 24px;
        margin: 1%;
    }

    h5 {
        font-size: 20px;
        font-weight: 600;
        margin: 1%;
    }

    h6 {
        font-size: 18px;
        font-weight: 600;
        margin: 1%;
    }

    p {
        font-size: 16px;
    }
}

img  {
    vertical-align: top;
}
strong {
    font-weight: 700;
}

p {
    font-size: 16px;
    line-height: 1.6;
}

ul {
    list-style: none;
    line-height: 1.9em;
}

ul li {
    list-style: none;
}

a {
    transition: all .3s ease;
    color: #0068b5;
    text-decoration: none;
}

a:hover {
    color: #ff2be2;
    text-decoration: none;
}

button,
.btn {
    color: #0068b5;
    transition: all .3s ease;
    font-size: 16px;
}

button:focus,
button:hover,
.btn:focus,
.btnhover {
    color: #ddd;
}

.btn-default {
    background-color: #0068b5;
    border: 1px solid #0068b5;
    margin-top: 20px;
    min-width: 120px;
    color: #fff;
    display: inline-block;
    width: 45%;
    margin: 1%;
    padding: 10px 0;
    font-size: 18px;
}

.btn-default:focus,
.btn-default:hover,
.btn-default:visited,
.btn-default:active {
    color: #fff;
    background: #ff2be2;
    border-color: #ff2be2;
    outline: none;
}

.btn-line {
    background-color: #fff;
    border: 1px solid #0068b5;
    margin-top: 20px;
    min-width: 120px;
    color: #0068b5;
    display: inline-block;
    width: 45%;
    margin: 1%;
    padding: 10px 0;
    font-size: 18px;
}

.btn-line:focus,
.btn-line:hover,
.btn-line:visited,
.btn-line:active {
    color: #0068b5;
    border: 1px solid #0068b5;
    background: #dedede;
    outline: none;
}

section,
header {
    position: relative;
}

section {
    padding: 5% 0;
    margin: 0;
}

@media (max-width: 767px) {
    section {
        /* padding: 4% 0 3%; */
        overflow: hidden;
    }

    .btn-default {
        width: calc(50% -2px);
    }
}

section .ul li {
    padding-left: 1rem;
}

section .ul li:before {
    content: '•';
    position: relative;
    font-size: 20px;
    color: #333333;
    left: -.5rem;
}

section:last-of-type {
    margin-bottom: 0;
}

.section-title {
    font-size: 42px;
    margin: 2% auto;
    text-align: center;
    line-height: 1.6;
    /* letter-spacing: 2px; */
}
.section-title span {
    display: block;
    color: #ff2be2;
}

.section-txt {
    /* font-size: 20px; */
    margin-bottom: 20px;
    line-height: 1.4;
}

.heighlight {
    color: #0068b5;
}

.stick-line {
    width: 100%;
    background-color: #dedede;
    height: 5px;
    margin: 2% 0;
}

/* section .title:before {
    content: '';
    background: url("../img/deco-title.png") no-repeat;
    width: 28px
    height: 28px;
    position: absolute;
    top: -45px;
    left: calc(50% - 15px);
} */

/* section .title span {
    font-size: 28px;
    color: #6e6e6e;
    display: block;
    margin: 10px auto 20px auto;
    letter-spacing: 2px;
    font-weight: 200;
} */

/* header .navbar-inverse .navbar-nav {
    float: right;
} */

/* @media (max-width: 1024px) {
    header {
        height: auto;
    }
} */

@media (max-width: 767px) {
    /* .navbar-inverse .navbar-nav {
        float: none;
        margin: 0;
    } */

    .navbar-inverse .navbar-nav li {}

    .section-title {
        font-size: 28px;
        line-height: 1.3;
        letter-spacing: 0px;
        margin-bottom: 3%;
    }
}

/**********
    Basic End
  **********/

/**********
    Utilities
  **********/
.ma__t30 {
    margin-top: 30px;
}

.overflow-y {
    overflow-y: visible;
}

.ma10 {
    margin: 10px;
}

.mat30 {
    margin-top: 30px;
}

.mat20 {
    margin-top: 20px;
}

.mat10 {
    margin-top: 10px;
}

.mab0 {
    margin-bottom: 0px;
}

.mab10 {
    margin-bottom: 10px;
}

.mab30 {
    margin-bottom: 30px;
}

.bg-color4 {
    background: #aba1c4;
}

.ul-check {
    margin-left: 5px;
    list-style: none;
}

.ul-check>li {
    display: inline-block;
    margin-left: 22px;
    word-break: keep-all;
}

.ul-check>li:before {
    content: "\f00c";
    font-family: fontawesome;
    position: absolute;
    font-size: 12px;
    margin-left: -15px;
}

.btn-txt {
    color: #5d5d5d;
}

.btn-buy {
    background: #5d5d5d;
    color: #fff !important;
}

.btn-stop {
    background: #aba1c4;
    color: #fff !important;
    user-select: none;
    touch-action: manipulation;
    cursor: not-allowed;
}

.btn-undo {
    background: #d8d0e7;
    border: 1px solid #aba1c4;
    color: #aba1c4 !important;
    user-select: none;
    touch-action: manipulation;
    cursor: not-allowed;
}

.line-h-15 {
    line-height: 1.5em !important;
}

.line-h-16 {
    line-height: 1.6em !important;
}

.line-h-18 {
    line-height: 1.8em !important;
}

.gotop {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 10px;
    color: #333333;
    padding: 3px 10px;
    font-size: 3em;
    border-radius: 0px;
    -moz-border-radius: 3px;
    line-height: 200%;
    text-align: center;
    opacity: 0.8;
    z-index: 998;
    transition: all .3s ease;
}

/**********
    Utilities End
  **********/



/**********
    Navbar
  **********/
nav.navbar-inverse {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0 40px;
    margin: 0;
    border-radius: 0;
    /* background: linear-gradient(180deg, #ffffff 0%, #2157f5 80%); */
    background: #0068b5;
    border-color: #0068b5;
    z-index: 999;
    height: 80px;
}

.navbar-inverse .collapse {
    flex: auto;
}

.navbar-inverse .navbar-header .navbar-toggle {
    border-radius: 0px;
    padding: 14px;
    border-color: #2157f5;
    color: #2157f5;
}

.navbar-inverse .navbar-header .navbar-toggle .icon-bar {
    background-color: #e2c8ff;
    height: 2px;
    width: 20px;
    display: block;
}

.navbar-inverse .navbar-logobox {
    display: block;
    padding: 8px;
    width: 200px;
    /* margin: 7% 0 0 10%; */
}

.navbar-inverse .navbar-logobox img {
    width: 100%;
}

.navbar-inverse .navbar-toggle {
    padding: 10px 15px;
}

.navbar-inverse .navbar-toggle:focus,
.navbar-inverse .navbar-toggle:hover {
    background-color: #000;
    color: #ffffff;
}

.navbar-inverse .navbar-nav {
    margin-right: 15px;
    float: right;
}

.navbar-inverse .navbar-nav li a {
    font-size: 16px;
    color: #ffffff;
    line-height: 55px;
    padding: 0.5rem 1.1em;
}

.navbar-inverse .navbar-nav li a:hover,
.navbar-inverse .navbar-nav li a:focus {
    color: #00faff;
}

.navbar-inverse .navbar-nav li .dropdown-menu {
    padding: 0px;
    border-radius: 0;
    left: calc(50% - 80px);
}

.navbar-inverse .navbar-nav li .dropdown-menu li {
    border-bottom: 1px solid #333333;
}

.navbar-inverse .dropdown {
    float: left;
}

.navbar-inverse .dropdown a:hover,
.navbar-inverse .dropdown a:active,
.navbar-inverse .dropdown a:visited {
    color: #333333;
}

.navbar-inverse .dropdown .btn {
    background: transparent;
}

.navbar-inverse .navbar-nav .dropdown-menu li a {
    line-height: 30px;
    padding: 10px 1em;
    text-align: center;
}

.navbar-inverse .nav .open>a,
.navbar-inverse .nav .open>a:focus,
.navbar-inverse .nav .open>a:hover {
    background: transparent;
    border-color: transparent;
}

/* @media (max-width: 1200px) {
    .navbar-inverse .navbar-logobox {
        margin-top: 6px;
        margin-left: 15px;
    }
} */

@media (max-width: 1024px) {
    nav.navbar-inverse {
        padding: 0 15px;
    }

    .navbar-inverse {
        height: auto;
    }
}

@media (max-width: 1200px) and (min-width: 768px) {
    .navbar-inverse .navbar-header {
        margin: auto;
    }
}

@media (max-width: 767px) {
    .navbar-header {
        background-color: #0068b5;
    }

    nav.navbar-inverse {
        /* position: absolute; */
        background-color: #2157f5;
        height: auto;
        width: 100%;
        padding: 0 15px;
        box-shadow: 0 0 16px #2157f5;
        display: block;
    }

    .navbar-inverse .navbar-nav {
        float: none;
        margin: 0;
    }

    .navbar-inverse .navbar-nav li {
        border-bottom: 1px solid #00000065;
        text-align: center;
    }

    .navbar-inverse ul li:last-child {
        border-bottom: none;
    }

    .navbar-inverse .navbar-nav li a {
        padding: .3em;
    }

    /* .navbar-inverse .navbar-nav>li>a:focus,
    .navbar-inverse .navbar-nav>li>a:hover {
        color: #0068b5;
    } */
}

/**********
    Navbar End
  **********/



/**********
    index & content kv
  **********/
.section-kv {
    padding: 120px 120px 120px;
    margin-top: 80px;
    position: relative;
    background: #0068b5 url('../img/kv-bg.jpg') no-repeat center bottom / cover;
    /* height: 600px; */
}

.section-kv-2 {
    padding: 120px 120px 120px;
    margin-top: 80px;
    position: relative;
    background: #0068b5 url('../img/kv-bg-2.jpg') no-repeat center bottom / cover;
    /* height: 600px; */
}

.kv-txtbox {
    width: 45%;
    margin-left: 5%;
}
.kv-txt img {
    width: 100%;
}

.section-kv.content {
    overflow: hidden;
}
.section-kv.content .kv-txtbox {
    width: 40%;
    margin-left: 5%;
}
.section-kv.content .kv-txt img {
    width: 100%;
}



@media (max-width: 767px) {
    .section-kv {
        padding: 80px 0px 0px 0px;
        /* background: #0068b5 url('../img/kv-bg-s.jpg') no-repeat left bottom / 100%; */
        height: fit-content;
        min-width: none;
        /* height: 280px; */
        overflow: visible;
        margin: 0;
    }
    .section-kv .kv-txtbox {
        display: none;
    }
    .section-kv.content {
        height: 340px;
    }

    .kv-bg-s {
        width: 100%;
    }
    
}

/**********
    index intro
  **********/
.section-intro {
    /* background: #a4fdff; */
    background: #fff;
    padding: 4% 0;
    color: #00125c;
}
.intro-txt p {
    font-size: 1.9rem;
    line-height: 1.8;
}





/**********
    index 優勢
  **********/
  .section-pod {
      background-color: #D0E2ED;
  }
  .section-pod .section-title {
      font-size: 32px;
      /* text-align: left; */
      line-height: 1.4;
      color: #015198;
  }
  .pod-item {
      background-color: #015198;
      color: #fff;
      margin: 10px 0;
  }
  .pod-img {
      height: 180px;
      width: 100%;
  }
  .pod-content {
      padding: 20px;
      min-height: 220px;
      position: relative;
    }
    .pod-content.arrow::after {
        content:'';
        width: 0;
        height: 0;
        position: absolute;
        margin: 0 auto;
        bottom: -50px;
        left: 0;
        right: 0;
        border: 30px solid transparent;
        border-top: 30px solid #015198;
    }
  .pod-title {
      text-align: center;
      font-size: 18px;
      color: #a0cc3a;
      font-weight: 700;
  }
  .pod-txt {
      font-size: 14px;
  }
  .pod-txt a {
      color: #00faff;
      text-decoration: underline;
  }
  .pod-txt a:hover {
    color: #00e3e7;
  }
  .pod-btn {
    width: 100%;
    display: inline-block;
    border-bottom: 1px solid #fff;
    color: #fff;
    border-radius: 0px;
    text-align: center;
    padding: 10px 0;
  }
  .pod-btn:hover {
    color: #00e3e7;
  }

/**********
    index feat
  **********/
.section-feat {
    background: #fff;
    border-left: 20px solid #D0E2ED;
    border-right: 20px solid #D0E2ED;
    border-bottom: 30px solid #D0E2ED;
    padding-top: 1%;
}

.section-feat .section-title {
    color: #0068b5;
}
.feat-box {
    padding: 10px;
    margin: 0;
    transition: all .3s ease;
}
.feat-box:hover {
    opacity: .85;
}

.feat-box img {
    max-width: 95%;
    margin: 3% auto;
}

.feat-box .feat-txt {
    padding: 0 13px;
}
@media (max-width: 767px) {
    .feat-box .feat-txt {
        text-align: center;
    }
}

.feat-title {
    font-weight: 500;
    text-align: center;
    color: #1f92d3;
    font-size: 24px;
    margin-top: 0;
    /* color: #0068b5; */
    /* min-height: 8rem; */
}
@media (max-width:991px) {
    .feat-title {
        text-align: center;
    }
}






/**********
    index 優勢
  **********/
.section-success {
    background: linear-gradient(90deg, #d6e6db 0%, #e4f0e6 100%);
}

/* .success-kv 大圖kv 大版 */
.success-kv.md {
    background: url(../img/seccess-1-2.png) no-repeat center center/100%;
    position: relative;
    width: 1000px;
    height: 600px;
    margin: 2% auto;
    z-index: 0;
}
.seccess-num {
    position: absolute;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100%;
    text-align: center;
    width: 36px;
    height: 36px;
    z-index: 2;
    box-shadow: 0 0 10px #747c75;
    border-radius: 50%;
    transition: all 1s ease-in;
    transform: translateY(0);
    -webkit-animation: moveNum 1.5s ease-in infinite;
    animation: moveNum 1.5s ease-in infinite;
}
.seccess-num::before {
    content:'';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    z-index: 1;
    background: rgba(255, 255, 255, 0);
    -webkit-animation: a-ripple 3s ease-in infinite;
    animation: a-ripple 3s ease-in infinite;
}


@-webkit-keyframes a-ripple {
    0% {
      opacity: 0;
    }
    25% {
      opacity: 1;
      
    }
    100% {
      width: 200%;
      height: 200%;
      padding: 200%;
      opacity: 0;
      background-color: rgba(0, 250, 255, 0.8);
    }
  }
  @keyframes a-ripple {
    0% {
      opacity: 0;
    }
    25% {
      opacity: 1;
      
    }
    100% {
      width: 200%;
      height: 200%;
      padding-bottom: 200%;
      opacity: 0;
      background-color: rgba(0, 250, 255, 0.8);
    }
  }
  

  @-webkit-keyframes moveNum {
    0% {
        transform: translateY(0);
    }
    100% {transform: translateY(3px);
    }
  }
  @keyframes moveNum {
    0%,100% {
        transform: translateY(0);
    }
    50% {transform: translateY(3px);
    }
  }

  





.seccess-num1 {
    background-image: url(../img/seccess-1-num1.png);
    left: 567px;
    top: 350px;
}
.seccess-num2 {
    background-image: url(../img/seccess-1-num2.png);
    left: 26px;
    top: 309px;
}
.seccess-num3 {
    background-image: url(../img/seccess-1-num3.png);
    left: 749px;
    top: 340px;
}
.seccess-num4 {
    background-image: url(../img/seccess-1-num4.png);
    left: 520px;
    top: 27px;
}
.seccess-num5 {
    background-image: url(../img/seccess-1-num5.png);
    left: 264px;
    top: 48px;
}
.seccess-num6 {
    background-image: url(../img/seccess-1-num6.png);
    left: 765px;
    top: 125px;
}

.seccess-num1 .success-item, .seccess-num2 .success-item, .seccess-num3 .success-item, .seccess-num4 .success-item, .seccess-num5 .success-item, .seccess-num6 .success-item {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    transition: all 1s ease-in;
    z-index: 999;
    height: auto;
    width: 500px;
    padding: 20px 20px 20px 40px;
    border-radius: 20px;
    background-image: none;
    display: none;
}
.seccess-num1:hover .success-item, .seccess-num2:hover .success-item, .seccess-num3:hover .success-item, .seccess-num4:hover .success-item, .seccess-num5:hover .success-item, .seccess-num6:hover .success-item {
    /* opacity: 1; */
    display: block;
    transform: translateX(0px);
}







/* .success-kv 大圖kv 小版 */
.success-kv {}
.success-kv .success-kv-img {
    width: 100%;
    max-width: 1600px;
    margin: auto;
}
.success-item-group {
}
.success-item-group > .cover {
    padding: 10px;
}





.success-item {
    background: #fff url('../img/seccess-item1.png')no-repeat left top /38%;
    padding: 20px 10px 10px 160px;
    position: relative;
    border-top-left-radius: 30px;
    box-shadow: 0 0 10px #aaa;
    height: 480px;
    text-align: left;
}
.success-item .num {
    position: absolute;
    top: 0;
    left: 0;
    text-align: center;
    font-size: 28px;
    font-family: 'Raleway Bold', Helvetica, Arial, sans-serif;
    background-color: #007dc7;
    color: #fff;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    line-height: 38px;
}
.cover:nth-child(2) .success-item {
    background:#fff url('../img/seccess-item2.png')no-repeat left bottom /76%;
}
.cover:nth-child(3) .success-item {
    background:#fff url('../img/seccess-item3.png')no-repeat left top /40%;
}
.cover:nth-child(4) .success-item {
    background:#fff url('../img/seccess-item4.png')no-repeat left bottom /60%;
}
.cover:nth-child(5) .success-item {
    background:#fff url('../img/seccess-item5.png')no-repeat left bottom /75%;
}
.cover:nth-child(6) .success-item {
    background:#fff url('../img/seccess-item6.png')no-repeat left bottom /50%;
}

.success-item-content {
    /* word-break: break-word; */
    line-height: 1.5;
}

.success-item .item-title {
    /* text-align: center; */
    vertical-align: middle;
    display: inline-block;
    line-height: 1.3;
    margin: 0;
    transition: all .3s ease;
}

.success-item .item-txt {
    font-size: 18px;
    transition: all .3s ease;
}


@media (max-width:768px) {
    .section-success {
        padding-left: 15px;
        padding-right: 15px;
    }

    .success-item {
        width: 100%;
        line-height: 1.5;
        margin-bottom: 15px;
    }

    .success-item .item-title {
        text-align: left;
        margin-bottom: 10px;
    }

    .success-item .item-txt {
        display: block;
    }
}
@media (max-width: 991px){
    .success-item, .cover:nth-child(2) .success-item, .cover:nth-child(3) .success-item,.cover:nth-child(4) .success-item, .cover:nth-child(5) .success-i.cover-item:nth-child(6) tem, .success {
        padding-left: 45%;
        /* background-size: 15%; */
    }
}



/**********
    cta
  **********/
.section-cta {
    background-color: #202b34;
    color: #fff;
}
.section-cta .section-title {
    margin: 1% 0;
}
.cta-txt p {
    font-size: 18px;
}

.btn-cta {
    display: block;
    margin: 2% auto 0;
    color: #fff;
    background-color: #ff2be2;
    border: 1px #ff2be2 solid;
}

.btn-cta:hover {
    background-color: #bf2aab;
}






/**********
    footer
  **********/
.section-footer {
    background-color: #0068b5;
    padding: 30px 0 0px 0;
    width: 100%;
}

.section-footer .footer-row {}
.footer-logo {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 3%;
    margin-left: 4%;
}
@media (max-width:768px) {
    .footer-logo {
        flex-wrap: wrap;
        flex-direction: column;
    }
}
.footer-logo .logo {
    width: 100%;
    max-width: 80px;
    padding-right: 2%;
    margin-bottom: 2%;
}
.footer-logo .text {
    font-size: 15px;
    color: #fff;
}
.copyright {
    background-color: #0068b5;
    border-top: 1px solid #c0c0c0;
    color: #fff;
    text-align: center;
    font-size: 15px;
    padding: 6px;
}






.social-link {
    width: 10px;
    margin-left: 10px;
    font-size: 24px;
    vertical-align: middle;
    color: #333;
}

.social-link:hover {
    color: #0068b5;
}

.sidebar-title {
    font-size: 18px;
    /* color: #fff; */
    text-decoration: none;
    writing-mode: vertical-lr;
    margin: 10px 0;
}

.sidebar-title span {
    /* display: inline-block;
    transform: rotate(-180deg); */
}


/**********
    sidebar
  **********/
.sidebar {
    position: fixed;
    top: 150px;
    right: 0;
    /* background: linear-gradient(90deg, #ff2be2 0%, #ff2be2 100%); */
    
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    box-shadow: -3px 3px 0px rgba(110, 110, 110, 0.3);
    transform: translateY(0px);
    transition: .3s;
    z-index: 999;
}
.sidebar a {
    background:#ff2be2;
    /* color: #fff;
    width: 50px; */
    padding: 10px 10px;
    color: #fff;
}
.sidebar a:hover {
    color: #fff;
    background-color: #c500ab;
}
.sidebar:hover {
    background: #fff1fd;
    box-shadow: -1px 1px 1px rgba(136, 136, 136, 0.3);
    transform: translateY(2px);
    text-decoration: none;
}

.sidebar .sidebar-title {
    font-size: 18px;
    /* color: #fff; */
    text-decoration: none;
    writing-mode: vertical-lr;
    margin: 10px 0;
}

.sidebar .sidebar-title span {
    /* display: inline-block;
    transform: rotate(-180deg); */
}

.sidebar i {
    /* color: #fff; */
    display: block;
    text-align: center;
}

.sidebar i:first-child {
    font-size: 24px;
    color: #ffffff;
}

/**********
    index End
  **********/






/**********
    內頁 news 側BAR-Blog
**********/
.section-news {}

.news-item time {
    margin: 10px 0;
    display: inline-block;
}

.news-group {}

.news-item {
    margin: 20px;
}

.news-item-txt {
    margin: 20px;
    column-gap: 40px;
    column-count: 2;
    text-align: justify;
}

.news-item-txt p,
.news-item-txt q {
    margin-bottom: 20px;
}

.news-item-txt q {
    display: inline-block;
    text-decoration: none;
    font-style: italic;
    font-weight: 700;
}

@media (max-width:768px) {
    .news-item-txt {
        column-gap: 20px;
        column-count: 1;
    }
}

/**********
    內頁 news 側BAR-Blog End
  **********/


/**********
    signup
  **********/
.section-signup {}

.signup-formbox input {
    margin: 0 2px 0 5px;
}

.help-block {
    color: #0068b5;
}

.quetion-group .col-sm-3 {
    padding-left: 0;
    padding-right: 0;
}

@media (min-width: 768px) {
    .section-signup .form-horizontal .control-label {
        padding-top: 0px;
    }
}

/**********
    signup End
  **********/






/**********
    thanks
  **********/
.section-thanks {}

.thanks-tabs {}

.thanks-tabs-content {}

.thanks-tabs .nav-item {
    font-size: 20px
}

.section-thanks .section-whitepaper {
    padding-top: 0;
}
.whitepaper-item {
    /* width: 340px; */
    margin: 10px;
    padding: 0;
    border-radius: 10px;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#042689+0,001a6f+39,001a6f+40,021547+43,021547+100 */
background: rgb(4,38,137); /* Old browsers */
background: -moz-linear-gradient(-45deg,  rgba(4,38,137,1) 0%, rgba(0,26,111,1) 39%, rgba(0,26,111,1) 40%, rgba(2,21,71,1) 43%, rgba(2,21,71,1) 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(-45deg,  rgba(4,38,137,1) 0%,rgba(0,26,111,1) 39%,rgba(0,26,111,1) 40%,rgba(2,21,71,1) 43%,rgba(2,21,71,1) 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(135deg,  rgba(4,38,137,1) 0%,rgba(0,26,111,1) 39%,rgba(0,26,111,1) 40%,rgba(2,21,71,1) 43%,rgba(2,21,71,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#042689', endColorstr='#021547',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */

    box-shadow: 0 0 10px #aaa;
    transition: all .3s ease;
}
.whitepaper-item a {
    display: block;
    padding: 20px 20px;
    color: #fff;
}
.whitepaper-item a:hover {
    color: #ff2be2;
}
.whitepaper-item .fa-arrow-right {
    
}
.section-whitepaper .icon-whitepaper {
    text-align: right;
}

.whitepaper-item-title span {
    font-size: 85%;
}


/**********
    thanks End
  **********/



