@charset "utf-8";

/* 公用 開始*/
    /* @keyframes */    
    @-webkit-keyframes btn_in{
        100% {
          top: -10px;
          right: -12px;
          bottom: -10px;
          left: -12px;
          opacity: 0;
        }
    }
    @keyframes btn_in {
        100% {
          top: -10px;
          right: -12px;
          bottom: -10px;
          left: -12px;
          opacity: 0;
        }
    }
  @-webkit-keyframes dots {
      1% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
      }

      3% {
        opacity: 1;
        -webkit-transform: scale3d(1.14, 1.14, 1.14);
        transform: scale3d(1.14, 1.14, 1.14);
      }

      6% {
        opacity: 0;
        -webkit-transform: scale3d(0.65, 0.65, 0.65);
        transform: scale3d(0.65, 0.65, 0.65);
      }

      8% {
        opacity: 1;
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
      }

      0%,10%,100% {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
      }
  }
  @keyframes dots {
      1% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
      }

      3% {
        opacity: 1;
        -webkit-transform: scale3d(1.14, 1.14, 1.14);
        transform: scale3d(1.14, 1.14, 1.14);
      }

      6% {
        opacity: 0;
        -webkit-transform: scale3d(0.65, 0.65, 0.65);
        transform: scale3d(0.65, 0.65, 0.65);
      }

      8% {
        opacity: 1;
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
      }

      0%,10%,100% {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
      }
  }
    /* btn */
    .btn{
        position: relative;
    }
    .btn a{
        width: 220px;
        height: 60px;
        color: #fff;
        background: var(--mainColor);
        border: 1px solid transparent;
        border-radius: 20px;
        display: inline-block;
        font-size: 14px;
        line-height: 60px;
        letter-spacing: 1px;
        text-align: center;
        position: relative;
        padding: 0;
        z-index: 5;
        -webkit-transition: all 0.4s ease;
        -moz-transition: all 0.4s ease;
        -o-transition: all 0.4s ease;
        transition: all 0.4s ease;
    }
    .btn a:hover{
        color: var(--mainColor);
        background: transparent;
        border-color: var(--mainColor);
        -webkit-transition: all 0.4s ease, border 0.4s 0.2s ease;
        -moz-transition: all 0.4s ease, border 0.4s 0.2s ease;
        -o-transition: all 0.4s ease, border 0.4s 0.2s ease;
        transition: all 0.4s ease, border 0.4s 0.2s ease;
    }
    .btn a::before{
        content: '';
        border-radius: 55px;
        border: 1px solid var(--mainColor);
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }
    .btn a:hover::before{
        -webkit-animation: btn_in 1s 0.2s forwards ease;
                animation: btn_in 1s 0.2s forwards ease;
    }
/* 公用 結束*/

/* t_5：#section-content 開始 */
#section-content {position: relative;}
/* t_5：#section-content 結束 */

/* t_5：最新消息 開始 */
#section-news {
    background: linear-gradient(90deg, #242424 55%, #d8ab5a 55%);
}
#section-news.bg_section-news {
    padding: 0;
}
#section-news .newsList{
    width: calc(65% + 34px);
    background-color: var(--mainColor);
    padding: 17px 15px 0;
    float: right;
}
.newsList .titleBox{
    display: inline-block;
    width: 18.5%;
    margin-right: 1.5%;
    float: left;
    position: relative;
}
.newsList .titleBox:before {
    content: '';
    position: absolute;
    right: -4px;
    top: -2px;
    display: block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    border: solid 1px var(--searchColor);
}
.newsList .titleBox:after {
    content: '';
    position: absolute;
    right: -2px;
    top: 3px;
    display: block;
    width: 1px;
    height: 64px;
    background-color: var(--searchColor);
}
.newsList .titleBox h2 {
    font-size: 2.2rem;
    /* font-weight: bold; */
    /*letter-spacing: 1px;*/
    color: rgba(255, 255, 255, 0.67);
    font-family: "Arial";
}

.newsList .titleBox h2 span {
    position: relative;
    margin-right: 8px;
    font-size: 3rem;
    color: var(--mainColor);
    display: inline-block;
    float: left;
    top: -8px;
    left: 2px;
    z-index: 0;
}

.newsList .titleBox h2 span:before {
    content: '';
    position: absolute;
    top: 6px;
    left: -2px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #f2e3c9;
    z-index: -1;
}
.newsList .owl-carousel{
    display: inline-block;
    width: 80%;
}
.newsList .owl-carousel .item{
    margin-top: 3px;
}
.newsList .owl-carousel .item .dateBox, .newsList .owl-carousel .item .Txt a{
    color: #fff;
}
.newsList .owl-carousel .item .dateBox{
    margin-bottom: 3px;
    font-weight: 600;
    letter-spacing: 1px;    
}
.newsList .owl-carousel .item .Txt{    
    display: inline-block;
    float: left;
    width: calc(97% - 140px);   
}
.newsList .btn.btn2{
    padding: 0;
    position: absolute;
    bottom: 6px;
    right: 15px;
}
.newsList .btn.btn2 a{
    width: 140px;
    height: 30px;
    color: rgba(255, 255, 255, 0.67);
    background: var(--mainColor);
    line-height: 30px;
}
.newsList .btn.btn2 a:hover{
    color: #fff;
    background: transparent;
    border-color: transparent;
}
.newsList .btn.btn2 a::before{
    border: 1px solid rgba(255, 255, 255, 0.28);
}
/* t_5：最新消息 結束 */

/* t_5：公司簡介 開始 */
/* t_5：公司簡介 結束 */

/* t_5：投資人服務 開始 */
/* t_5：投資人服務 結束 */

/* t_5：人才招募 開始 */
/* t_5：人才招募 結束 */

/* t_5：最新商品 開始 */
#section-pro .container::after{
    content: '';
    position: absolute;
    bottom: -70px;
    left: 0;
    z-index: -1;
    width: 351px;
    height: calc(100% + 187px);
    display: block;
    background-color: var(--hoverColor2);
}
#section-pro .img_box{
    width: calc(100% - 23px);
    margin-left: 23px;
    padding-top: 117px;
    box-shadow: -2px 2px 0px #fff;
    position:relative;
}
#section-pro .img_box .proGridBox .imgBox {
    width: calc(50% - 30px);
    margin-right: 30px;
    display: inline-block;
    float: left;
}
#section-pro .img_box .pro_box{
    display: inline-block;
    width: 50%;   
}
#section-pro .img_box .pro_box .mTitle{
    color: var(--textColor);
    font-size: 1.6rem;
    font-weight: 600;
    padding-bottom: 25px;
}
#section-pro .img_box .pro_box .mTitle small {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding-bottom: 15px;
    padding-left: 0px;    
}
#section-pro .img_box .pro_box .txt{
    background-color: #fff;
    position: relative;
}
#section-pro .img_box .pro_box .txt h3{
    color: var(--hoverColor4);
    font-size: 1.6rem;
    line-height: 1.5;
    padding: 12px 0 10px 0;
    border-top: 1px solid var(--lineColor);
}
#section-pro .img_box .pro_box .txt h4{
    color: var(--hoverColor4);
    padding: 0 0 10px 0;
    background-color: #fff;
    border: 1px solid var(--hoverColor4);
    width: 150px;
    font-size: 14px;
    text-align: center;
    height: 24px;
    line-height: 24px;
    letter-spacing: 1px;
}
#section-pro .img_box .pro_box .txt p{
    padding: 25px 0 25px 0;
}
#section-pro .btn.btn_more2{
    padding: 0;
    position: absolute;
    right: 0;
}
#section-pro .btn.btn_more2 a{
    height: 35px;
    line-height: 35px;
    width: 160px;
}
#section-pro .Btn_prevnext {
    top: 100%;
    right: calc(100% - 313px);
}
#section-pro .Btn_prevnext .btn{
    width: 35px;
    height: 35px;
    line-height: 35px;
    background-color: #fff;
    border-radius: 0;    
}
/* t_5：最新商品 結束 */

/* t_5：核心競爭力 開始 */
/* t_5：核心競爭力 結束 */
@media (max-width: 1024px) {
    /* t_5：最新消息 開始 */
    #section-news {
        background: linear-gradient(90deg, #d8ab5a 55%, #d8ab5a 55%);
    }
    #section-news .newsList {
        width: 100%;
    }
    /* t_5：最新消息 開始 */

    /* t_5：最新商品 開始 */
    #section-pro .container::after {
        width: 367px;
    }
    #section-pro .Btn_prevnext {
        right: calc(100% - 329px);
    }
    /* t_5：最新商品 結束 */

    /* t_5：最新商品 結束 */
    /* t_5：最新商品 結束 */
}
@media (max-width: 991px) {
    /* t_5：最新消息 開始 */
    .newsList .titleBox {
        width: 100%;
        margin-right: 0;
    }
    .newsList .titleBox:before{
        display: none;
    }
    .newsList .titleBox:after {
        right: 0;
        top: 37%;
        width: calc(100% - 120px);
        height: 1px;
    }
    .newsList .titleBox h2 {
        font-size: 1.9rem;
    }
    .newsList .titleBox h2 span {
        font-size: 2.8rem;
        top: -9px;
        left: 2px;
    }
    .newsList .titleBox h2 span:before {
        top: 7px;
        left: -1px;
        width: 35px;
        height: 35px;
    }
    .newsList .owl-carousel{
        width: 100%;
    }
    .newsList .owl-carousel .item .Txt {
        width: 100%;
    }
    .newsList .btn.btn2 {
        bottom: -15px;
    }
    /* t_5：最新消息 結束 */ 

    /* t_5：最新商品 開始 */
    #section-pro {
     padding-bottom: 45px;
    }
    #section-pro .container::after {
        display: none;
    }
    #section-pro .img_box {
        width: 100%;
        margin-left: 0;
        padding-top: 0px;
        box-shadow: none;
    }
    #section-pro .img_box .item {
        margin: 130px 0px 0 0;
    }
    #section-pro .img_box .proGridBox .imgBox {
        width: 100%;
        margin-right: 0px;
    }
    #section-pro .proGridBox .imgBox img {
        width: 400px;
    }
    #section-pro .img_box .pro_box {
        width: 100%;
        padding-left: 0px;
    }
    #section-pro .img_box .pro_box .mTitle {
        text-align: center;
        position: absolute;
        top: 50px;
        left: calc(50% - 156px);
        padding-bottom: 0;
    }
    #section-pro .img_box .pro_box .mTitle small {
        font-size: 1.9rem;
        padding-bottom: 0;
    }
    #section-pro .img_box .pro_box .txt {
    text-align: center;
    text-align: justify;
    text-justify: inter-ideograph;
    }
    #section-pro .img_box .pro_box .txt h3 {
        font-size: 1.4rem;
        text-align: center;
    }
    #section-pro .img_box .pro_box .txt h4{
        margin: 0 auto;
    }    #section-pro .btn.btn_more2{
        display: none;
    }
    #section-pro .Btn_prevnext .btn {
        color: #fff;
        background-color: var( --hoverColor );
    }
    #section-pro .Btn_prevnext {
        right: calc(50% - 40px);
        top: initial;
        bottom: -5px;
    }
    #section-pro .Btn_prevnext .btn:hover {
        background-color: var( --hoverColor4 );
    }
    /* t_5：最新商品 結束 */
}
@media (max-width: 767px){
    /* t_5：最新消息 開始 */
    .newsList .titleBox:after {
        right: 5px;
        top: 37%;
        width: calc(100% - 125px);
        height: 1px;
    }
    .newsList .btn.btn2 {
        bottom: 81px;
        right: calc(0% + 15px);
    }
    /* t_5：最新消息 結束 */     
}
@media (max-width: 425px) {
    /* t_5：最新消息 開始 */
    .newsList .titleBox h2 span:before {
        top: 5px;
        width: 30px;
        height: 30px;
    }
    .newsList .titleBox h2 {
        font-size: 1.5rem;
    }
    .newsList .titleBox h2 span {
        font-size: 2.4rem;
    }
    .newsList .titleBox:after {
        top: 29%;
    }
    .newsList .btn.btn2 {
        bottom: 100px;
    }
    /* t_5：最新消息 結束 */ 
}