@charset "UTF-8";

body {
    font-family: pingfang SC, helvetica neue, arial, hiragino sans gb, microsoft yahei ui, microsoft yahei, simsun, sans-serif !important;
    margin: 0px;
}

p {
    margin: 0px;
    padding: 0
}

ul {
    margin: 0;
    padding: 0px;
}

a {
    text-decoration: none;
}

@font-face {
    font-family: "DIN";
    src: url("../fonts/DIN-Regular.otf");
    font-weight: normal;
    font-style: normal;

}




body::-webkit-scrollbar-corner,
html::-webkit-scrollbar-corner {
    width: 0
}

body::-webkit-scrollbar,
html::-webkit-scrollbar {
    background: transparent;
    height: 16px;
    width: 16px
}

body::-webkit-scrollbar-track,
html::-webkit-scrollbar-track {
    background: var(--bg-color-page)
}

body::-webkit-scrollbar-thumb,
html::-webkit-scrollbar-thumb {
    background-clip: content-box;
    background-color: #d2d2d2;
    border: 4px solid transparent;
    border-radius: 8px
}


@keyframes EnterUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes FadeIn {
    0% {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.EnterUp {
    -webkit-animation-name: EnterUp;
    animation-name: EnterUp
}

.FadeIn {
    -webkit-animation-name: FadeIn;
    animation-name: FadeIn
}

.animation {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

.img-suit {
    max-width: 100%;
}

.box {
    padding: 1rem 0;
}

.flexbox {
    display: flex;
}

.flexfull {
    flex: 1;
}

.flexnormal {
    flex: none;
}

.flex-column {
    flex-direction: column;
}

.flex-row {
    flex-direction: row;
}

.t-box {
    padding: 40px 0;
    box-sizing: border-box;
}

.t-box .t-content {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.t-box .t-content .t-flex-item-3 {
    width: calc(33.3333% - 40px);
}

.t-box .t-content .title {
    font-size: 16px;
    font-weight: 700;
    color: #333
}

.t-box .t-content .detail {
    font-size: 13px;
    color: #888;
    line-height: 24px;
    margin-top: 30px;
}

.t-box .t-content .t-flex-item-2 {
    width: calc(50% - 40px);
}


.t-box .t-content .t-flex-item-4 {
    width: calc(25% - 40px);
}


/*---------nav---------*/
.t-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, .7);
    z-index: 9999;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(15px);
}

.t-nav-ready {
    background-color: transparent;
    box-shadow: none;
    backdrop-filter: blur(0px);
}

.t-nav-logo {
    width: 100px;
    overflow: hidden;
}

.t-nav-ready .t-nav-logo img {
    position: relative;
    filter: drop-shadow(#fff 100px 0);
    transform: translateX(-100px);
}

.t-nav-ready .t-nav-menu li:after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 4px;
    background-color: #fff;
    transform: translateX(-48%);
    transition: width .25s ease;
}

.t-nav-ready .t-nav-menu li:hover:after {
    width: calc(100% - 16px);
}

.t-nav-ready .t-nav-menu .link-name {
    flex: 1;
    color: #fff
}

.t-nav-ready .t-nav-menu .dripicons-chevron-down {
    flex: none;
    color: #fff;
}



.t-nav .t-nav-menu .line {
    background-color: #0263FF;
    height: 2px;
    position: absolute;
    bottom: 0px;
    left: 0;
    transition: all .24s cubic-bezier(.38, 0, .24, 1);
}

.t-nav-ready .t-nav-menu .line {
    background-color: #ffffff;
    height: 2px;
    position: absolute;
    bottom: 0px;
    left: 0;
    transition: all .24s cubic-bezier(.38, 0, .24, 1);
}

.t-nav .t-nav-menu li:hover a {
    color: #0263FF;
}

.t-nav-ready .t-nav-menu li:hover a {
    color: #fff;
}



.t-nav-content {
    display: flex;
    height: 100%;
    align-items: Center;
    margin: 0 auto;
    padding-left: 2rem;
    background-color: rgba(255, 255, 255, 0.1);
}


.t-nav-menu {
    display: flex;
    margin: 0px;
    position: relative;
    /* gap: 26px; */
    /* padding: 20px 0; */
    margin-left: 70px;
}



.t-nav-btn {
    width: 150px;
    height: 74px;
    background: #0069EA;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.t-nav-btn:hover {
    background: #4498ff;
    transition: background .3s;
}


.t-nav-menu li {
    float: left;
    list-style: none;
    /* padding: 26px 0; */
    flex: none;
    box-sizing: border-box;
    font-size: 16px;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
    height: 100%;
    padding: 26px;
}

.t-nav-menu li:after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 4px;
    background-color: #0068ff;
    transform: translateX(-48%);
    transition: width .25s ease;
}

.t-nav-menu li:hover:after {
    width: calc(100% - 16px);
}


.t-nav-menu li a {
    text-decoration: none;
    color: #333
}




.t-nav-menu li a:target {
    text-decoration: none;
    color: #333
}


.t-nav-menu li>.popview {
    opacity: 0;
    transition: transform .3s, opacity .3s;
    border-radius: 6px;
    margin-left: -8px;
    position: absolute;
    left: 0;
    z-index: 9;
    background-color: #fff;
    padding: 10px;
    display: block;
    box-shadow: 0 10px 20px 0 rgb(0 0 0 / 10%);
    transform: translateY(-8px);
    top: 70px;
    visibility: hidden;
}



.t-nav-menu li:hover>.popview {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}


.t-nav-menu li:hover>.popview .item-navbox {
    display: grid;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
}

.t-nav-menu li:hover>.popview .item-navbox .item-nav {
    display: flex;
    flex-direction: row;
    padding: 8px 0;
    align-items: center;
}

.t-nav-menu li:hover>.popview .item-navbox .item-nav .icon-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    margin-right: 10px;
    flex: none;
}

.t-nav-menu li:hover>.popview .item-navbox .item-nav .data {
    flex: 1
}

.t-nav-menu li:hover>.popview .item-navbox .item-nav .title {
    font-weight: 600;
    color: #333;
    font-size: 15px;
    line-height: 24px;
}

.t-nav-menu li:hover>.popview .item-navbox .item-nav:hover .title {
    color: #0263FF
}

.t-nav-menu li:hover>.popview .item-navbox .item-nav .sologan {
    color: rgba(0, 0, 0, 0.3);
    font-size: 14px;
}


.swiper {
    width: 100%;
    height: 700px;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.swiper .swiper-slide .text {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 48px;
    right: 48px;
    display: flex;
    flex-direction: column;
    color: #fff;
    justify-content: flex-start;
    width: 1200px;
    margin: 0 auto;
    text-align: left;

}

.swiper .swiper-slide .text .content {
    width: 450px;
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: center;
}

.swiper .swiper-slide .text h1 {
    font-size: 46px;
    margin: 0px;
}

.swiper .swiper-slide .text h2 {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 3.6px;
    line-height: 32px;
    color: #fff;
    text-align: left;
    vertical-align: top;
    margin-top: 14px;
}

.swiper .swiper-slide .text .btn {
    display: inline-flex;
    width: 200px;
    height: 52px;
    font-size: 18px;
    cursor: pointer;
    font-weight: 400;
    text-align: center;
    margin-top: 20px;
    background: linear-gradient(38deg, #00ff98 .39%, #266cff 53.45%, #0553ff 99.61%);
    border-radius: 6px;
    justify-content: center;
    align-items: center;
    border: 1px solid #fff;
}

.swiper .swiper-slide .text .btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transition: .2s;
}

/*----ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â©ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¹ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œ-----*/
.t-section-title {
    font-weight: 700;
    font-size: 28px;
    color: #333;
    line-height: 48px;
    text-align: center;
    margin: 10px 0;
    margin-bottom: 40px;
}

.t-section-sub {
    font-size: 16px;
    color: #3d485d;
    line-height: 20px;
    margin-top: 12px;
    margin-bottom: 0px;
    text-align: center;
    width: 1200px;
    margin: 0 auto;
    line-height: 1.5;
    color: #757683;
}

/*------index_t1cap-box------*/
.t1cap-box {
    box-sizing: border-box;
    overflow: hidden;

}

.t1cap-box .tabs-box-vertical {
    display: flex;
    margin: 0 auto;
    margin-top: 40px;
    height: 100%;
    width: 1200px;
    margin: 0 auto;
    box-shadow: 0 24px 24px 0 rgba(180, 188, 214, .24);
    /* justify-content: center; */
}

.t1cap-box .tabs-box-vertical .tabs-box-nav {
    display: flex;
    flex: 1;
    flex-direction: column;
    position: relative;
    background-color: #f2f2f2;
    padding: 40px 10px;
    box-sizing: border-box;
}

.t1cap-box .tabs-box-vertical .tabs-box-nav .item {
    cursor: pointer;
    font-size: 24px;
    padding: 10px 10px;
    position: relative;
    z-index: 2;
    box-sizing: border-box;
    display: flex;
    align-items: Center;
    text-align: right;
    justify-content: left;
}

.t1cap-box .tabs-box-vertical .tabs-box-nav .item img {
    margin-right: 10px;
}

.t1cap-box .tabs-box-vertical .tabs-box-nav .current {
    color: #0263FF;
    transition: .2s;
}

.t1cap-box .tabs-box-vertical .tabs-content img {
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 0;
    object-fit: cover;
    /* border-radius: 6px; */
    height: 600px;
}

.t1cap-box .tabs-box-vertical .tabs-box-nav .data h3 {
    /* font-weight: bolder; */
    margin-bottom: 0px;
    font-size: 22px;
    padding: 10px 0;
    box-sizing: border-box;
    text-align: right;
    width: 100%;
}

.t1cap-box .tabs-box-vertical .tabs-content {
    flex: 2;
    position: relative;
}

.t1cap-box .tabs-box-vertical .tabs-content .data-box {
    opacity: 0;
    transition: opacity .24s cubic-bezier(.38, 0, .24, 1);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: end;
    height: 600px;
    padding: 40px;
    box-sizing: border-box;
    /* border-radius: 6px; */
}

.t1cap-box .tabs-box-vertical .tabs-content .data-box:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(179deg, rgb(54 111 255 / 0%) 0%, rgb(0 0 0) 100%);
    z-index: 1;
    height: 600px;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
}

.t1cap-box .tabs-box-vertical .tabs-content .data-box .title {
    font-size: 36px;
    position: relative;
    z-index: 1;
    color: #fff;
    font-weight: 600;
}

.t1cap-box .tabs-box-vertical .tabs-content .data-box .content {
    margin-top: 20px;
    position: relative;
    z-index: 1;
    color: #fff;
    line-height: 1.8;
    font-size: 14px;
    word-break: break-all;
    max-width: 50%;
}

.t1cap-box .tabs-box-vertical .tabs-content .data-box .btn {
    width: 174px;
    height: 44px;
    background-color: #0263FF;
    line-height: 44px;
    text-align: center;
    color: #fff;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0px;
    margin-top: 40px;
    position: relative;
    z-index: 9;
    cursor: pointer;
}

.t1cap-box .tabs-box-vertical .tabs-content .data-box .btn:hover {
    background-color: #004dc9;
    transition: .2s;
}


.t1cap-box .tabs-box-vertical .bgline {
    background: linear-gradient(to left, rgba(255, 255, 255, 0.95), transparent);
    position: absolute;
    left: 0;
    right: 0;
    height: 62px;
    border-right: 3px solid #0263FF;
    transition: transform .24s cubic-bezier(.38, 0, .24, 1);
    backdrop-filter: blur(6px);
}


.t1cap-solutionbox {
    background: #000 url(./images/t1capsolution.png);
    background-size: cover;
    background-position: center;
    padding: 40px 0;
    overflow: hidden;
}

.t1cap-solutionbox .box {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 10px;
}

.t1cap-solutionbox .box .item {
    flex: 1;
    height: 400px;
    width: 250px;
    position: relative;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}

.t1cap-solutionbox .box .item:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(360deg, rgb(54 111 255 / 0%) 0%, rgb(0 71 255) 100%);
    z-index: 0;
}

.t1cap-solutionbox .box .item:hover {
    transform: translateY(-20px);
    transition: .2s;
    width: calc(100% - 200px)
}

.t1cap-solutionbox .box .item .before {
    position: relative;
    display: flex;
    z-index: 1;
    color: #fff;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.t1cap-solutionbox .box .item .after,
.t1cap-solutionbox .box .item:hover .before {
    display: none;
    transition: cubic-bezier(0.075, 0.82, 0.165, 1);
}

.t1cap-solutionbox .box .item i {
    font-size: 36px;
    color: #fff
}

.t1cap-solutionbox .box .item .before .name {
    margin-top: 40px;
    font-size: 20px;
    font-weight: bold;
}

.t1cap-solutionbox .box .item:hover .after {
    background-color: #0263FF;
    position: relative;
    display: flex;
    z-index: 1;
    color: #fff;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.t1cap-solutionbox .box .item:hover .after .first {
    font-size: 20px;
    margin-bottom: 40px;
    font-weight: bold;
}

.t1cap-solutionbox .box .item:hover .after .second {
    font-size: 14px;
    margin-bottom: 20px;
}

.t1cap-solutionbox .box .item:hover .after .third {
    font-size: 14px;
    font-weight: bold;
}

.t1cap-solutionbox .box .item:hover .after .btn {
    cursor: pointer;
    padding: 10px 20px;
    border: 1px solid #fff;
    color: #fff;
    font-size: 14px;
    position: absolute;
    bottom: 20px;
}

.t1cap-solutionbox .box .item:hover .after .btn:hover {
    background-color: rgba(255, 255, 255, 0.2)
}

/*-------ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â°ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â©ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â»ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¥ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¨ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¨ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢------*/
.t1cap-newslist {
    padding: 40px 0;
}

.t1cap-newslist .content {
    width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.t1cap-newslist .content .item {
    display: flex;
    width: calc(50% - 20px);
    padding: 10px 0;
    box-sizing: border-box;

}

.t1cap-newslist .item .date {
    font-family: "DIN";
    text-align: right;
    font-weight: bold;
    font-size: 20px;
    margin-right: 20px;
    color: #0263FF
}


.t1cap-newslist .item .news {
    flex: 1;
}

.t1cap-newslist .item .news .title {
    font-weight: bold;
    color: #333;
    font-size: 14px;
    margin-bottom: 10px;
    cursor: pointer;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    margin: 0;
}

.t1cap-newslist .item .news .title:hover {
    text-decoration: underline;
}

.t1cap-newslist .item .news .msg {
    font-size: 12px;
    color: #888;
    line-height: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    margin-top: 5px;

}

.t1cap-newslist .content .btn {
    margin: 0 auto;
    cursor: pointer;
    padding: 10px 50px;
    border: 1px solid #ddd;
    font-size: 14px;
    text-decoration: none;
    color: #333;
    border-radius: 4px;
}

.t1cap-newslist .content .btn:hover {
    background-color: #0e6aff;
    color: #fff;
    border-color: #0e5aff;
    transition: all .2s;
}




.t1cap-client {
    padding: 40px 0;
    background-color: #ecf6ff;
}

.t1cap-client .swiper {
    width: 1200px;
    height: auto;
}

.t1cap-client .swiper .swiper-wrapper {
    gap: 20px;
}

.t1cap-client .swiper .item {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 6px;
    min-width: 330px;
    height: 350px;
}

.t1cap-client .swiper .item:hover {
    box-shadow: 0 2px 4px -4px rgba(31, 35, 41, .02),
        0 4px 8px rgba(31, 35, 41, .02),
        0 4px 16px 4px rgba(31, 35, 41, .03);
}


.t1cap-client .swiper .item .img {
    height: 200px;
    overflow: hidden;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    position: relative;
}

.t1cap-client .swiper .item .img img {
    max-width: 100%;
    object-fit: cover;
    height: 100%;
}

.t1cap-client .swiper .item .do {
    font-weight: 600;
    font-size: 22px;
    line-height: 28px;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    margin-top: 30px;
    margin-bottom: 20px;
}

.t1cap-client .swiper .item .btn {
    margin: 0 auto;
    margin-top: auto;
    margin-bottom: 20px;
    border: 1px solid #b9c5ff;
    padding: 10px 30px;
    background-color: #f6fbff;
    font-size: 14px;
    color: #001dff;
    cursor: pointer;
}

.t1cap-client .swiper .item .img .name {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: Center;
    color: #fff;
    justify-content: center;
    font-size: 14px;
    font-size: 24px;
    font-weight: 600;
    margin: 0px;
}

.t1cap-client .content .dripicons-chevron-left,
.t1cap-client .content .dripicons-chevron-right {
    display: flex;
    align-items: Center;
    font-size: 24px;
    cursor: pointer;
    flex-wrap: nowrap;
    position: absolute;
    left: 10px;
    top: 50%;
    margin-top: -12px;
    width: 24px;
    height: 24px;
    background-color: #fff;
    z-index: 1;
}

.t1cap-client .content .dripicons-chevron-right {
    left: auto;
    right: 10px;
}



.t1cap-client .morebtn {
    margin: 30px auto;
    cursor: pointer;
    padding: 10px 50px;
    border: 1px solid #ddd;
    font-size: 14px;
    text-decoration: none;
    color: #333;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 0px;
    background-color: #fff;
}

.t1cap-client .morebtn:hover {
    background-color: #0e6aff;
    color: #fff;
    border-color: #0e5aff;
    transition: all .2s;
}

.t1cap-client .swiper-button-prev:after,
.t1cap-client .swiper-button-next:after {
    font-size: 24px;
    color: #fff;
}



.t1cap-clients-list {
    padding: 40px 0;
}

.t1cap-clients-list .content {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.t1cap-clients-list .content .com-item img {
    border-radius: 4px;
    box-shadow: 0 2px 4px -4px rgba(31, 35, 41, .02), 0 4px 8px rgba(31, 35, 41, .02), 0 4px 16px 4px rgba(31, 35, 41, .03);
}

.t1cap-partner {
    background-image: linear-gradient(rgba(3, 3, 3, 1), rgba(3, 3, 3, 1));
    padding: 40px 0;
}

.t1cap-partner .content {
    width: 1200px;
    margin: 0 auto;
    color: #fff;
}

.t1cap-partner .content h1 {
    font-size: 24px;
    font-weight: 600
}

.t1cap-partner .content .data {
    width: 50%;
}

.t1cap-partner .content p {
    line-height: 1.5;
    font-size: 14px;
    margin-top: 20px;
}

.t1cap-partner .btn {
    border: 1px solid #fff;
    padding: 10px 40px;
    display: inline-block;
    cursor: pointer;
    margin-top: 33px;

}

.t1cap-form {
    background-color: #1d72ff;
    padding: 20px 0;
    box-sizing: border-box;
}

.t1cap-form .content {
    width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.t1cap-form .content .input-box {
    width: calc(50% - 40px);
}

.t1cap-form .content .input-box .title {
    font-size: 14px;
    color: #fff;
    display: block;
    margin-bottom: 10px;
}

.t1cap-form .content .input-box input {
    height: 42px;
    background-color: #fff;
    width: 100%;
    border: 1px solid #e1e1e1;
    border-radius: 5px;
    padding: 0 5px;
    box-sizing: border-box;
    outline: none;
}

.t1cap-form .content .input-box input[type="text"]:focus,
.t1cap-form .content .input-box input[type="number"]:focus {
    border-color: #8593ff;
    transition: .2s;
    box-shadow: 0 0 0 5px rgb(255 255 255 / 30%);
}

.t1cap-form .sumbit-btn {
    margin: 20px auto;
    cursor: pointer;
    font-size: 20px;
    background-color: #FFA800;
    display: inline-block;
    color: #fff;
    height: 52px;
    width: 300px;
    border-radius: 3px;
    line-height: 52px;
    font-weight: 700;
    margin-top: 60px;
}
.t1cap-form .sumbit-btn:hover{
    background-color:#da9100;
    transition: .2s;
}


.t-footer {
    background-color: #1A1A1A;
    display: flex;
    flex-direction: column;
}

.t-footer .main-content {
    width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
    display: flex;
    justify-content: space-around;
    overflow: hidden;
    align-items: center;
}

.t-footer .main-content .qr-code-box {
    display: flex;
    flex-direction: column;
    /* margin-left: auto; */
}

.t-footer .main-content .qr-code-box .logo img {
    position: relative;
    filter: drop-shadow(#fff 100px 0);
    transform: translateX(-100px);
    margin-bottom: 20px;
}

.t-footer .main-content .address-box {
    margin-right: auto;
    line-height: 1.5;
    margin-left: 20px;
}

.t-footer .main-content .address-box .title {
    color: #999;
    margin: 0px;
    line-height: 24px;
    font-size: 13px;
}

.t-footer .main-content .address-box .text {
    color: #fff;
    margin: 0px;
    margin-bottom: 10px;
    font-family: 'DIN';
    font-size: 17px;
}

.t-footer .main-content .link-list {
    margin-left: auto;
    display: flex;
    gap: 20px;
}

.t-footer .main-content .link-list ul {
    margin: 0px;
}

.t-footer .main-content .link-list ul li {
    list-style: none;
}

.t-footer .main-content .link-list ul li a {
    color: #999;
    cursor: pointer;
    font-size: 14px;
    line-height: 32px;
}

.t-footer .main-content .link-list ul li a:hover {
    text-decoration: underline;
}

.t-footer .copyright {
    background-color: #2A2A2A;
    text-align: center;
    color: #999;
    border-top: 1px solid #424242;
    padding: 10px 0;
    font-size: 12px;
}

.t-footer .copyright a {
    color: #999;
    text-decoration: none;
}

/*-----------tbanner------------*/
.t-banner {
    position: relative;
    overflow: hidden;
}

.t-banner img {
    max-width: 100%;
}

.t-banner .des-box {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    position: absolute;
    left: 0;
    right: 0;
    top: 70px;
    bottom: 0;
    color: #fff;
    justify-content: center;
    ;
}

.t-banner .des-box .title {
    font-size: 42px;
    font-weight: 700;
    margin: 0;
    margin-bottom: 10px;
}

.t-banner .des-box .describe {
    font-size: 16px;
    line-height: 26px;
    margin-top: 8px;
    white-space: pre-line;
    width: 50%;
}

.t-banner .des-box .btn {
    width: 104px;
    height: 40px;
    border-radius: 3px;
    text-align: center;
    line-height: 40px;
    background: linear-gradient(131.68deg, rgb(255, 193, 58) 2.55%, #ffae00 131.96%);
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}


.t1cap-product {
    padding: 40px 0;
}

.t1cap-product .content {}

.t1cap-product .content .content-item {
    padding: 40px 0;
}

.t1cap-product .content .content-item .content-item-detail {
    width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.t1cap-product .content .content-item .content-item-detail .title {
    font-size: 24px;
    display: block;
    margin-bottom: 28px;
    color: #333;
    font-weight: 600;
}

.t1cap-product .content .content-item .content-item-detail .detail {
    color: #888;
    line-height: 2;
    font-size: 16px;
}


.t1cap-advantage {}

.t1cap-advantage .content {
    width: 1200px;
    display: flex;
    gap: 20px;
    margin: 0 auto;
    flex-wrap: wrap;
    padding: 40px 0;
}

.t1cap-advantage .content .item {
    padding: 40px;
    box-sizing: border-box;
    background-color: #fff;
    width: calc(33.3% - 20px);
    box-shadow: 0 4px 8px rgba(31, 35, 41, .03), 0 3px 6px -6px rgba(31, 35, 41, .05), 0 6px 18px 6px rgba(31, 35, 41, .03);
    border-radius: 3px;
}

.t1cap-advantage .content .item .title {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin: 0;
    margin-bottom: 30px;
}

.t1cap-advantage .content .item .detail {
    font-size: 13px;
    color: #888;
    line-height: 24px;
}

.t1cap-advantage .content .item:hover {
    background-color: #0263FF;
    transition: all .2s;
}

.t1cap-advantage .content .item:hover .title,
.t1cap-advantage .content .item:hover .detail {
    color: #fff
}

/*---ç§»åŠ¨è¥é”€è§£å†³æ–¹æ¡ˆ---*/
.solution_function .t-content {
    gap: 0px;
}

.solution_function .t-flex-item-3 {
    border: 1px solid #052666;
    padding: 40px;
    box-sizing: border-box;
    flex: 1;
    background-size: cover;
    background-position: center;
    height: 450px;
    position: relative;
}

.solution_function .t-flex-item-3:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;

}

.solution_function .t-flex-item-3 .title {
    font-size: 20px;
    color: #fff;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.solution_function .t-flex-item-3 ul {
    list-style: disc;
    color: #fff;
    position: relative;
    margin-left: 20px;
    z-index: 2;
}

.solution_function .t-flex-item-3 li {
    margin-bottom: 20px;
}

.solution_function .t-flex-item-3 ul .sub-title {
    font-size: 14px;
    color: #fff;
}

.solution_function .t-flex-item-3 ul .sub-detail {
    font-size: 12px;
    color: #fff;
    line-height: 24px;
    display: none;
}

.solution_function .t-flex-item-3:hover ul li .sub-detail {
    display: block;
}

.solution_function .t-flex-item-3:hover {
    flex: 2;
    transition: all .3s cubic-bezier(.38, 0, .24, 1);
    ;
}

.t-client {
    padding: 40px 0;
    box-sizing: border-box;
}

.t-client .content {
    width: 1200px;
    margin: 0 auto;
    display: flex;
}

.t-client .content .msgdata {
    width: 40%;
}

.t-client .content .msgdata .title {
    font-size: 20px;
    color: #333;
    font-weight: 600;
    margin-bottom: 20px;
}

.t-client .content .msgdata .detail {
    font-size: 13px;
    color: #888;
    line-height: 24px;
}

.t-client .content .msgdata .btn {
    border: 1px solid #0057FF;
    color: #0057FF;
    height: 32px;
    color: #001dff;
    padding: 0 10px;
    font-size: 13px;
    display: inline-block;
    margin-top: 20px;
    line-height: 32px;
    cursor: pointer;
}

.t-client .content .msgdata .btn:hover {
    background-color: #e6e6ff;
    transition: .2s;
}

.t-client .content .client-img {
    margin-left: auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(31, 35, 41, .03), 0 3px 6px -6px rgba(31, 35, 41, .05), 0 6px 18px 6px rgba(31, 35, 41, .03);
}

.t-client .content .client-img img {
    max-width: 400px;
    height: 100%;
    object-fit: cover;
}


.solution_describe .t-content {
    width: 1000px;
    gap: 20px;
}

.solution_describe .t-content .t-flex-item-2 {
    display: flex;
    flex-direction: column;
    color: #fff;
    background-color: #020C26;
    padding: 20px;
    box-sizing: border-box;
    width: calc(50% - 20px);
    border-radius: 3px;

}

.solution_describe .t-content .t-flex-item-2 .icon-img {
    width: 32px;
    height: 32px;
    margin-bottom: 20px;
}

.solution_describe .t-content .t-flex-item-2 .title {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 24px;
}

.solution_character .t-flex-item-4 {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.solution_character .t-flex-item-4 img {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
}

.solution_character .t-flex-item-4 .title {
    font-size: 16px;
    font-weight: 700;
}

.solution_character .t-flex-item-4 .describe {
    font-size: 14px;
    line-height: 24px;
    color: #888
}

.solution3_function .t-content {
    gap: 20px;
}


.solution3_function .t-content .t-flex-item-3 {
    padding: 40px;
    box-sizing: border-box;
    background-color: rgba(0, 0, 0, 0.3);
    width: calc(33.3333% - 20px);
}

.solution3_function .t-content .t-flex-item-3 .title {
    font-size: 16px;
    font-weight: 700;
    color: #43E8F2;
}

.solution3_function .t-content .t-flex-item-3 .detail {
    font-size: 14px;
    color: #fff;
}

/*-----åˆä½œä¼™ä¼´------*/
.t-partner-box {
    margin-top: -60px;
    position: relative;
    z-index: 2;
}

.t-partner-box .t-content .t-flex-item-4 {
    width: calc(25% - 70px);
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .1);
    display: flex;
    flex-direction: column;
    background-color: #fff;
    text-align: center;
    gap: 20px;
    padding: 20px;
    border-radius: 4px;
    text-align: center;
}


.t-partner-box .t-content .t-flex-item-4 .h3 {
    font-size: 18px;
    font-weight: 700;
    color: #333;

}

.t-partner-box .t-content .t-flex-item-4 .detail {
    font-size: 14px;
    color: #888;
    margin-top: 0px;
    line-height: 1.5;
}

.t-applyfor-box .t-content {
    gap: 0px;
}

.t-applyfor-box .t-content .t-flex-item-4 {
    text-align: center;
    position: relative;
    width: 25%;
    gap: 0px;
}

.t-applyfor-box .t-content .t-flex-item-4 img {
    width: 32px;
    height: 32px;
}

.t-applyfor-box .t-content .t-flex-item-4 .detail {
    margin-top: 0px;
}

.t-applyfor-box .t-content .t-flex-item-4:after {
    content: "";
    background-color: #ddd
}

/*-----æœ€ä½³å®¢æˆ·ç»éªŒ-----*/
.t-client-box {
    background-color: #F3F5F7;
}

.t-client-box .t-content {
    width: 1200px;
    margin: 0 auto;
    margin-top: 40px;
}

.t-client-box .t-content .t-flex-item-3 {
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(31, 35, 41, .03), 0 3px 6px -6px rgba(31, 35, 41, .05), 0 6px 18px 6px rgba(31, 35, 41, .03);
    border-radius: 3px;
    height: 330px;
    background-color: #fff;
}

.t-client-box .t-content .t-flex-item-3 img {
    width: 100%;
    height: 182px;
    object-fit: cover;
}

.t-client-box .t-content .t-flex-item-3:hover img {
    transform: scale(1.1);
    transition: all .2s;
}

.t-client-box .t-content .t-flex-item-3 .client-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 10px 20px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    display: block;
    cursor: pointer;
}

.t-client-box .t-content .t-flex-item-3 .client-title:hover {
    color: #0057FF
}

.t-client-box .t-content .t-flex-item-3 .client-msg {
    font-size: 13px;
    line-height: 24px;
    color: #888;
    margin: 0 20px;
    margin-bottom: 20px;
}

.t-newslist-box .t-content .t-flex-item-3 {
    height: auto;
}

/*---新闻详情----*/
.t-newsdetail .t-content {
    width: 1000px;
    margin: 0 auto;
    padding: 100px 0;
    display: flex;
    gap: 40px;
}

.t-newsdetail .t-content .title {
    font-size: 26px;
    color: #333333;
    line-height: 36px;
}

.t-newsdetail .t-content .datetime {
    font-size: 13px;
    color: #888;
    line-height: 24px;
}

.t-newsdetail .t-content .content {
    white-space: pre-line;
    color: #333;
    font-size: 16px;
    line-height: 2;
}

.t-newsdetail .t-content .content img {
    width: 100%;
    object-fit: none;
}

.t-newsdetail .t-content .t-main {
    flex: 1;
}

.t-newsdetail .t-content .t-main-list {
    padding: 20px;
    box-sizing: border-box;
    width: 300px;
    height: 400px;
}

.t-newsdetail .t-content .t-main-list .list-title {
    padding: 8px 0;
    display: inline-block;
    font-weight: 700;
    color: #333;
    border-bottom: 3px solid #004dc9;
    font-size: 16px;
}

.t-newsdetail .t-content .t-main-list .list-itemtitle {
    font-size: 13px;
    color: #333
}

.t-newsdetail .t-content .t-main-list .list-itemtime {
    font-size: 13px;
    color: #999
}

.t-newsdetail .t-content .t-main-list ul li {
    list-style: none;
    line-height: 1.5;
    padding: 8px 0;
    box-sizing: border-box;
}

@media screen and (max-width: 414px) {

    .tablets-box {
        display: none;
    }

    .phone-box {
        display: block;
    }
}


/*---markdown格式---*/
#news-container {
    color: rgba(0, 0, 0, .8) !important;

    h3 {
        font-size: 18px;
        font-weight: 700;
        line-height: 28px;
        margin-bottom: 12px !important;
        margin-top: 28px;
    }

    h4 {
        font-size: 16px;
        font-weight: 700;
        line-height: 28px;
        margin-bottom: 8px !important;
        margin-top: 24px;
    }

    strong {
        font-weight: 600;
        font-size: 16px;
        line-height: 28px;
    }

    p {
        color: rgba(0, 0, 0, .8) !important;
        font-size: 16px;
        font-weight: 400;
        line-height: 28px;
    }
}

/*--详情页头部----*/
.detail-header .t-nav-ready .t-nav-menu li a {
    color: #333
}

.detail-header .t-nav-ready .t-nav-logo img {
    position: relative;
    filter: drop-shadow(#004061 100px 0);
    transform: translateX(-100px);
}

@keyframes bounce-custom {

    0%,
    100% {
        transform: translateY(0);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    }

    50% {
        transform: translateY(-25px);
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
}

.bounce-custom {
    animation: bounce-custom 1.5s infinite;
}


/*---介绍----*/
.t-intro{
    
}
.t-intro .t-intro-title{
    width:1200px;
    margin:0 auto;
    display:flex;
    align-items:center;
    justify-content: space-around;
}
.t-intro .t-intro-title .btn{
    position: relative;
    width: 400px;
    height: 91px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid #e0edff;
    box-shadow: -5px 20px 35.62px 0 #edf6ff;
    font-size: 24px;
    font-weight: 600;
    line-height: 91px;
    text-align: center;
    transition: transform .3s ease;
    font-weight: 600;
    cursor: pointer;
    color:#333;
}
.t-intro .t-intro-title .btn:hover{
    border-color:#0553ff;
    transition:.2s;
    color:#0553ff
}
.t-intro .t-intro-box{
    background-color:#f6fbff;
    padding-top:40px;
    padding-bottom:40px;
    border: 1px solid hsla(0, 0%, 100%, .12);
}
.t-intro .t-intro-box .t-intro-data{
    width:1200px;
    display:flex;
    box-shadow: 0 24px 24px 0 rgba(180, 188, 214, .24);
    background-color:#fff;
    border-radius:12px;
    margin:40px auto;
    height: 585px;
}
.t-intro .t-intro-box .t-intro-leftItem{
    display:flex;
    flex-direction: column;
    width:240px;
    flex:none;
    background-color: #F4F6FC;
    padding:20px;
    position:relative;
}
.t-intro .t-intro-box .t-intro-leftItem .btn{
    height:62px;
    display:flex;
    align-items: center;
    padding: 0 1rem;
    font-size:18px;
    border:1px solid transparent;
    position:relative;
    gap:10px;
    cursor:pointer;
    z-index:2;
}
.t-intro .t-intro-box .t-intro-leftItem .active-box{
    position:absolute;
    left:20px;
    right:20px;
    height:62px;
    background: #f8fafb;
    border: 1px solid hsla(0, 0%, 100%, .12);
    border-radius: 8px;
    -webkit-box-shadow: 0 2px 8px 0 rgba(20, 30, 49, .08), inset 0 1px 1px 0 #fff, inset 0 -1px 1px 0 hsla(0, 0%, 100%, .5);
    box-shadow: 0 2px 8px 0 rgba(20, 30, 49, .08), inset 0 1px 1px 0 #fff, inset 0 -1px 1px 0 hsla(0, 0%, 100%, .5);
}


.t-intro .t-intro-box .t-intro-leftItem .btn img{
    width:32px;
    height:32px;
}
.t-intro .t-intro-box .t-intro-showImg{
    flex:1;
    position:relative;
}
.t-intro .t-intro-box .t-intro-showImg .img img{
    max-width:100%;
    
}
.t-intro .t-intro-box .t-intro-showImg .img{
    transition:all .2s;
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    position: absolute;
    display:flex;
    flex-direction: column;
}
.t-intro .t-intro-box .t-intro-showImg .img.active{
    transform: translateY(0px);
    opacity: 1;
    visibility:visible;
}
.t-intro .t-intro-box .t-intro-showImg .img .intro-text{
    margin-left: 50px;
    margin-right: 50px;;
    margin-top: -46px;
    word-break: break-all;
    display:flex;
    align-items: center;
}
.t-intro .t-intro-box .t-intro-showImg .img .intro-text p{
    color: rgba(0, 0, 0, 0.8);
    flex:1;
}
.t-intro .t-intro-box .t-intro-showImg .img .intro-text .linkTo{
    color:#0069EA;
    padding:8px 10px;
    font-size:14px;
    border:1px solid #0069EA;
    border-radius:3px;
}

