@charset "utf-8";

/*初始化*/

* {
    padding: 0;
    margin: 0;
    outline: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    font-size: calc(100vw/19.2);
}

html,
body {
    width: 100%;
    height: auto;
    min-height: 100%;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Source Han Sans CN', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'WenQuanYi Micro Hei', 'Arial', 'sans-serif', \5b8b\4f53, "BEBAS";
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    background: #fff;
}

input,
button {
    -webkit-appearance: none;
    border-radius: 0;
}

a,
a:hover,
a:focus {
    text-decoration: none;
}

textarea {
    resize: none;
    overflow: auto;
}

input,
button,
textarea,
select {
    border: 0;
    font-size: inherit;
    background: transparent;
    font-family: inherit;
}

img {
    border: 0;
    vertical-align: top;
}

li {
    list-style: none;
}

div,
ul,
ol,
li,
p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}


/* placeholder修改 */

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    /* WebKit, Blink, Edge */
    color: #999 !important;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: #999 !important;
    opacity: 1;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #999 !important;
    opacity: 1;
}

input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #999 !important;
}

select {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    white-space: nowrap;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    color: #999;
}

select::-ms-expand {
    display: none;
}

@font-face {
    font-family: "BEBAS";
    src: url("../fonts/BEBAS.ttf");
}


/*公共样式*/

.c-clear {
    zoom: 1;
}

.c-clear:after {
    content: '';
    display: block;
    clear: both;
}

.c-fl {
    float: left;
}

.c-fr {
    float: right;
}

.c-container {
    position: relative;
    width: 100%;
    padding: 0 2.6rem;
}

body.c-open {
    overflow: hidden;
}


/* 占位标签，设置导航样式 */

#c-placeholder {
    height: 105px;
}


/*顶部*/

#c-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 900;
    width: 100%;
    line-height: 100px;
    text-align: center;
    color: #fff;
    transition: all 0.5s;
    background: #00a2e9;
}

#c-header .c-main-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#c-header .c-right-box {
    display: flex;
    align-items: center;
}

#c-header a {
    color: #fff;
    transition: all 0.5s;
}

#c-header.c-head-move {
    top: -105px;
}

#c-header.c-style2 {
    box-shadow: 0 2px 10px rgba(0, 0, 0, .05);
}


/*顶部logo*/

#c-header .c-logo a {
    display: flex;
    align-items: center;
}

#c-header .c-logo a img {
    height: 58px;
    vertical-align: middle;
}

#c-header .c-logo .c-text-box {
    padding-left: 15px;
    margin-left: 15px;
    border-left: 1px solid rgba(255, 255, 255, .3);
    text-align: left;
}

#c-header .c-logo .c-text-box p {
    font-size: 18px;
    line-height: 28px;
    color: #00a2e9;
}

#c-header .c-logo .c-text-box span {
    display: block;
    font-size: 10px;
    line-height: 20px;
}


/*顶部搜索*/

#c-header form {
    position: relative;
    cursor: pointer;
}

#c-header form .c-box {
    display: none;
    position: absolute;
    top: -webkit-calc(100% + 10px);
    top: calc(100% + 10px);
    right: 0;
    width: 280px;
    height: 50px;
    border-radius: 5px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .1);
}

#c-header form>i {
    transition: .5s;
}

#c-header form input {
    float: left;
    width: -webkit-calc(100% - 70px);
    width: calc(100% - 70px);
    height: 50px;
    padding: 0 15px;
}

#c-header form button {
    float: left;
    width: 70px;
    height: 50px;
    font-size: 16px;
    cursor: pointer;
    color: #fff;
    background: #00a2e9;
}


/*顶部pc导航*/

#c-header .c-nav {
    display: block;
    text-align: center;
}

#c-header .c-nav>li {
    position: relative;
    display: inline-block;
    vertical-align: top;
}

#c-header .c-nav>li:last-child {
    margin-right: 40px;
}

#c-header .c-nav>li:hover {
    background: #fff;
}

#c-header .c-nav>li:hover>a {
    color: #00a2e9;
}

#c-header .c-nav>li>a {
    padding: 0 40px;
}

#c-header .c-nav li a {
    position: relative;
    display: block;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

#c-header .c-nav li a i {
    margin-left: 8px;
    font-size: 20px;
}

#c-header .c-nav ul li a {
    padding: 5px 10px;
    color: #333;
}

#c-header .c-nav ul li a:hover {
    color: #fff;
    background: #00a2e9;
}

#c-header .c-nav ul {
    display: none;
    position: absolute;
    top: 99%;
    left: 50%;
    width: 100%;
    min-width: 136px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background: #fff;
    line-height: 26px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .1);
}

#c-header .c-nav>li:hover>a::before {
    width: 100%;
}


/*顶部移动端导航*/

#c-header .c-nav2 {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: 0;
    font-size: 14px;
    line-height: 50px;
    overflow-y: auto;
    background: #fff;
    transition: all 0.5s;
}

.c-open #c-header .c-nav2 {
    height: calc(100% - 60px);
    height: -webkit-calc(100% - 60px);
}

#c-header .c-nav2 a {
    display: block;
    margin: 0 20px;
    border-bottom: 1px solid #f1f1f1;
    text-align: left;
    color: #333;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

#c-header .c-nav2>li:first-child {
    border-top: 1px solid #f1f1f1;
}

#c-header .c-nav2 li:hover>a,
#c-header .c-nav2 li.active>a {
    color: #00a2e9
}

#c-header .c-nav2 li a i {
    float: right;
    margin-top: 15px;
    font-size: 20px;
}

#c-header .c-nav2 li ul {
    display: none;
}

#c-header .c-nav2 li ul a {
    padding-left: 15px;
}

#c-header .c-nav2 li li li a {
    padding-left: 30px;
}


/*顶部导航开关*/

#c-header .c-switch {
    position: absolute;
    top: 50%;
    right: 20px;
    display: none;
    width: 24px;
    height: 20px;
    margin-top: -10px;
    cursor: pointer;
}

#c-header .c-switch i {
    position: relative;
    display: block;
    height: 2px;
    background: #fff;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

#c-header .c-switch i:nth-child(1) {
    top: 0;
}

#c-header .c-switch i:nth-child(3) {
    bottom: 0;
}

#c-header .c-switch i:nth-child(2) {
    margin: 6px 0;
}

body.c-open #c-header .c-switch i:nth-child(2) {
    opacity: 0;
}

body.c-open #c-header .c-switch i:nth-child(1) {
    top: 8px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

body.c-open #c-header .c-switch i:nth-child(3) {
    bottom: 8px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}


/*首页轮播图*/

.c-banner1 {
    margin-top: 100px;
}

.c-banner1 .swiper-slide {
    height: 570px;
}

.c-banner1 .c-wrap {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.c-banner1 .c-wrap img {
    display: none;
}

.c-banner1 .c-title-box {
    width: 100%;
    text-align: center;
}

.c-banner1 .c-title-box .c-title1 {
    opacity: .2;
    margin-bottom: -43px;
    font-family: "BEBAS";
    font-size: 86px;
    line-height: 96px;
    color: #0f599a;
}

.c-banner1 .c-title-box .c-title2 {
    margin-bottom: 30px;
    font-size: 86px;
    line-height: 96px;
    color: #00a2e9;
}

.c-banner1 .c-title-box .c-title2 span {
    font-weight: bold;
}

.c-banner1 .c-title-box .c-title3 {
    font-weight: bold;
    font-size: 38px;
    line-height: 48px;
    color: #fff;
}

.c-banner1 .swiper-button-next,
.c-banner1 .swiper-button-prev {
    opacity: .4;
    width: 50px;
    height: 50px;
    margin-top: -25px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
}

.c-banner1 .swiper-button-next {
    right: .6rem;
    background-image: url(../images/next.png);
}

.c-banner1 .swiper-button-prev {
    left: .6rem;
    background-image: url(../images/prev.png);
}

.c-banner1 .swiper-button-next:hover,
.c-banner1 .swiper-button-prev:hover {
    opacity: 1;
}


/* 底部 */

#c-footer {
    color: #333;
    background: #4e606c;
}

#c-footer a {
    color: #b8c0c5;
    transition: .5s;
}

#c-footer a:hover {
    color: #00a2e9;
}

#c-footer .c-footer-top {
    padding: 100px 0;
}

#c-footer .c-footer-top .c-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

#c-footer .c-footer-top .c-title {
    padding-bottom: 30px;
    font-size: 22px;
    line-height: 32px;
    color: #fff;
}

#c-footer .c-footer-top .c-title i {
    display: none;
    transition: .5s;
}

#c-footer .c-footer-top .c-left-box {
    width: 60%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
}

#c-footer .c-footer-top .c-list li {
    padding-bottom: 15px;
    font-size: 14px;
    line-height: 24px;
}

#c-footer .c-footer-top .c-right-box {
    padding-left: 9%;
    border-left: 1px solid rgba(255, 255, 255, .2);
}

#c-footer .c-footer-top .c-right-box .c-link {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}

#c-footer .c-footer-top .c-right-box .c-code {
    width: 108px;
    border-radius: 5px;
    overflow: hidden;
}

#c-footer .c-footer-top .c-right-box .c-code img {
    width: 100%;
}

#c-footer .c-footer-top .c-right-box .c-ico {
    margin-left: 30px;
    display: flex;
}

#c-footer .c-footer-top .c-right-box .c-ico a {
    display: block;
    margin-left: 10px;
    width: 35px;
    height: 35px;
    background-color: #33444f;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 70%;
    border-radius: 50%;
    transition: .5s;
}

#c-footer .c-footer-top .c-right-box .c-ico a:nth-child(1) {
    background-image: url(../images/footer-wx2.png);
}

#c-footer .c-footer-top .c-right-box .c-ico a:nth-child(2) {
    background-image: url(../images/footer-wb2.png);
}

#c-footer .c-footer-top .c-right-box .c-ico a:nth-child(3) {
    background-image: url(../images/footer-qq2.png);
}

#c-footer .c-footer-top .c-right-box .c-ico a:nth-child(1):hover {
    background-color: #00a2e9;
    background-image: url(../images/footer-wx.png);
}

#c-footer .c-footer-top .c-right-box .c-ico a:nth-child(2):hover {
    background-color: #00a2e9;
    background-image: url(../images/footer-wb.png);
}

#c-footer .c-footer-top .c-right-box .c-ico a:nth-child(3):hover {
    background-color: #00a2e9;
    background-image: url(../images/footer-qq.png);
}

#c-footer .c-footer-top .c-right-box .c-text-box {
    line-height: 26px;
    color: #b8c0c5;
}

#c-footer .c-footer-top .c-right-box .c-text-box p {
    padding-top: 25px;
}

#c-footer .c-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 15px 0;
    font-size: 14px;
    line-height: 24px;
    text-align: center;
    color: #b8c0c5;
    background: #364651;
}

#c-footer .c-footer-bottom .c-copyright {
    word-wrap: break-word;
    word-break: break-all;
}


/* 微信弹窗 */

#c-footer .c-weixin {
    display: none;
    position: fixed;
    z-index: 910;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
}

#c-footer .c-weixin .c-img-box {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -138px 0 0 -120px;
    padding: 20px;
    width: 240px;
    background: #fff;
    overflow: hidden;
}

#c-footer .c-weixin .c-img-box img {
    width: 100%;
    margin-bottom: 20px;
}

#c-footer .c-weixin .c-img-box p {
    font-size: 16px;
    line-height: 1em;
    text-align: center;
    color: #555;
}


/* 回到顶部 */

#c-go-top {
    opacity: .4;
    display: none;
    position: fixed;
    z-index: 5;
    bottom: 30px;
    right: 30px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    background: url(../images/go-top.png) no-repeat center;
    transition: all .5s linear;
    background-size: 30px;
    border-radius: 50%;
}

#c-go-top:hover {
    opacity: 1;
}


/* 顶部banner */

#c-top-banner {
    position: relative;
    margin-top: 100px;
    height: 5.64rem;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}


/* #c-top-banner::before {
	content: "";
	position: absolute;
	top: 0;
	left:0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.2);
} */

#c-top-banner .c-container {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

#c-top-banner .c-title {
    font-size: 48px;
    line-height: 58px;
}

#c-top-banner .c-en-title {
    font-weight: bold;
    font-size: 26px;
    line-height: 36px;
}


/* 顶部菜单 */

#c-top-menu {
    position: relative;
    z-index: 1;
    margin-top: -68px;
    line-height: 68px;
    border-bottom: 1px solid #fafafa;
    background: rgba(0, 162, 233, .8);
}

#c-top-menu .c-list {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow-x: auto;
    margin-bottom: -1px;
}

#c-top-menu .c-list li {
    position: relative;
    flex: none;
    padding: 0 30px;
}

#c-top-menu .c-list li:first-child {
    padding-left: 0;
}

#c-top-menu .c-list li:last-child {
    padding-right: 0;
}

#c-top-menu .c-list li:last-child::before {
    display: none;
}

#c-top-menu .c-list li a {
    color: #fff;
    transition: .5s;
}

#c-top-menu .c-list li::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -7px;
    height: 14px;
    border-left: 2px solid #fff;
    transition: .5s;
}


/* #c-top-menu .c-list li.active a,
#c-top-menu .c-list li:hover a {
    color: #00a2e9;
} */


/* 公共查看更多 */

.c-common-more {
    display: block;
    margin: 0 auto;
    padding-right: 50px;
    width: 300px;
    border-bottom: 1px solid #999;
    line-height: 50px;
    font-size: 14px;
    color: #999;
    background-image: url(../images/jt3.png);
    background-position: right center;
    background-repeat: no-repeat;
    background-size: 36px auto;
    transition: .5;
}

.c-common-more:hover {
    color: #00a2e9;
    border-color: #00a2e9;
    background-image: url(../images/jt2.png);
}


/* 地图 */

.c-map {
    opacity: 1;
    width: 100%;
    height: 100%;
    background: #f5f5f5;
}

.c-map.active {
    opacity: 1;
    z-index: 2!important;
}

.c-map .map-title {
    font-size: 14px;
    font-weight: bold;
    color: #00a2e9;
}

.c-map .map-content {
    font-size: 12px;
    color: #222;
}

.c-map .anchorBL {
    display: none;
}


/* 分享 */

div.bsLogoLink,
#bsBox .bsTop,
#bsBox #bsMorePanel {
    width: 100% !important;
}

.bFind-wrapper-top {
    height: 26px !important;
}

#bsBox #bsMorePanel {
    height: 373px !important;
}

.bsPlatDiv {
    height: 312px !important;
}

.bFind {
    width: 204px !important;
}

#bsBox {
    height: 408px !important;
    width: 276px !important;
    margin-left: -138px !important;
}

.bsTop {
    width: 208px !important;
}

.bsFrameDiv div {
    width: 208px !important;
    height: 208px !important;
}

.bsFrameDiv img {
    width: 166px !important;
    height: 166px !important;
}


/* 上下页 */

#c-prevNext {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

#c-prevNext a {
    max-width: 46%;
    display: flex;
    align-items: center;
    font-size: 14px;
    line-height: 24px;
    color: #666;
    transition: .5s;
}

#c-prevNext a:hover {
    color: #00a2e9;
}

#c-prevNext .prev i {
    margin-right: 10px;
    font-size: 20px;
    vertical-align: middle;
}

#c-prevNext .next i {
    margin-left: 10px;
    font-size: 20px;
    vertical-align: middle;
}


/* 分页 */

#c-page {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    color: #666;
    font-size: 14px;
    line-height: 40px;
}

#c-page .c-box {
    display: flex;
    align-items: flex-start;
}

#c-page .c-box a {
    margin: 0 5px;
    display: block;
    width: 40px;
    text-align: center;
    background: #f9f9f9;
    color: #666;
    transition: .5s;
}

#c-page .c-box .active {
    color: #fff;
    background: #00a2e9;
}

#c-page .c-box .prev,
#c-page .c-box .next {
    width: 100px;
}

#c-page .c-box .c-dot {
    margin: 0 -5px;
    background: #fff;
}

#c-page .c-box a:hover {
    color: #fff;
    background: #00a2e9;
}

#c-page form {
    display: flex;
}

#c-page form .c-text {
    padding: 0 20px;
}

#c-page form input {
    margin-right: 10px;
    width: 40px;
    height: 40px;
    border: 1px solid #f9f9f9;
    color: #666;
    text-align: center;
}

#c-page form button {
    width: 40px;
    height: 40px;
    background: #f9f9f9;
    color: #666;
    cursor: pointer;
    transition: .5s;
}

#c-page form button:hover {
    color: #fff;
    background: #00a2e9;
}


/* 公共标题 */

.c-common-title .c-title {
    margin-bottom: 60px;
    font-size: 36px;
    line-height: 46px;
    color: #00a2e9;
    text-align: center;
}

.c-common-title2 {
    position: relative;
    padding: 120px 0 50px;
}

.c-common-title2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    border-top: 6px solid #00a2e9;
}

.c-common-title2 .c-title {
    font-size: 36px;
    line-height: 46px;
}

.c-common-title3 {
    text-align: center;
}

.c-common-title3 .c-title {
    font-size: 32px;
    line-height: 42px;
    color: #666;
}

.c-common-title3 .c-text {
    padding: 20px 0 60px;
    font-size: 18px;
    line-height: 28px;
    color: #999;
}


/* 公用盒子 */

#c-conmon-box {
    margin-top: 80px;
}

#c-conmon-box .c-main-wrap {
    padding: 80px 100px;
    background: #e7eef5;
}

#c-conmon-box .c-title-box .c-title {
    padding-bottom: 80px;
    font-size: 36px;
    line-height: 46px;
    text-align: center;
    color: #00a2e9;
}

#c-conmon-box .c-top-box {
    margin-bottom: 80px;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}

#c-conmon-box .c-top-box .c-img-box {
    width: 50%;
    height: 2.94rem;
    overflow: hidden;
}

#c-conmon-box .c-top-box .c-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s;
}

#c-conmon-box .c-top-box .c-img-box:hover img {
    transform: scale(1.05, 1.05);
    -webkit-transform: scale(1.05, 1.05);
}

#c-conmon-box .c-top-box .c-text-box {
    width: 50%;
    padding-left: 50px;
}

#c-conmon-box .c-top-box .c-text-box .c-title {
    margin-bottom: 20px;
    display: inline-block;
    font-size: 38px;
    line-height: 68px;
    color: #f25e20;
    border-bottom: 6px solid #f25e20;
}

#c-conmon-box .c-top-box .c-text-box .c-text {
    font-size: 18px;
    line-height: 2;
    color: #666;
}

#c-conmon-box .c-bottom-box {
    padding: 80px;
    background: #fafcfd;
    font-size: 18px;
    line-height: 2;
}

#c-conmon-box .c-bottom-box img {
    max-width: 100%;
    height: auto !important;
}


/* 底部链接 */

#c-link {
    padding: 80px 0;
}

#c-link .c-list {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

#c-link .c-list a {
    position: relative;
    padding: 80px 0;
    width: 47.3%;
    text-align: center;
    overflow: hidden;
}

#c-link .c-list a img {
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s;
}

#c-link .c-list a:hover img {
    transform: scale(1.05, 1.05);
    -webkit-transform: scale(1.05, 1.05);
}

#c-link .c-list .c-text-box {
    position: relative;
    z-index: 2;
}

#c-link .c-list .c-title {
    font-size: 36px;
    line-height: 46px;
    color: #fff;
    transition: .5s;
}

#c-link .c-list .c-en-title {
    font-size: 26px;
    line-height: 36px;
    color: #fff;
}


/* #c-link .c-list a:hover .c-title {
	color: #00a2e9;
} */


/* 联系我们 */

#c-contact {
    padding: 120px 0;
    background: #fff;
    background: -webkit-linear-gradient(left, #f8f8f8 50%, #fff 50%);
    background: linear-gradient(to right, #f8f8f8 50%, #fff 50%);
}

#c-contact .c-container {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}

#c-contact .c-left-box {
    padding: 0 1rem;
    width: 50%;
}

#c-contact .c-title {
    margin-bottom: 70px;
    font-size: 42px;
    line-height: 52px;
    color: #333;
}

#c-contact .c-title.c-dt {
    color: #00a2e9;
}

#c-contact .c-title2 {
    margin-bottom: 20px;
    font-weight: bold;
    font-size: 24px;
    line-height: 34px;
    color: #00a2e9;
}

#c-contact .c-title2.c-dt {
    color: #f25e20;
}

#c-contact .c-text {
    margin-bottom: 60px;
    color: #666;
    line-height: 2;
}

#c-contact .c-box a {
    margin: 0 5px;
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: 24px;
    height: 24px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% auto;
}

#c-contact .c-box .c-wx img {
    display: none;
    position: absolute;
    bottom: 26px;
    left: 50%;
    margin-left: -50px;
    width: 100px;
}

#c-contact .c-box .c-wx:hover img {
    display: inline-block;
}

#c-contact .c-box .c-wx {
    background-image: url(../images/footer-wx2.png);
}

#c-contact .c-box .c-wb {
    background-image: url(../images/footer-wb2.png);
}

#c-contact .c-box .c-qq {
    background-image: url(../images/footer-qq2.png);
}

#c-contact .c-box .c-yx {
    background-image: url(../images/footer-yx2.png);
}

#c-contact .c-map-box {
    margin-top: 50px;
    width: 100%;
    height: 284px;
}

#c-contact .c-right-box {
    width: 50%;
    padding: 0 1.5rem;
}

#c-contact .c-right-box input,
#c-contact .c-right-box select {
    margin-bottom: 24px;
    padding: 0 20px;
    width: 100%;
    border: 1px solid #eaeaea;
    line-height: 54px;
    color: #999;
}

#c-contact .c-right-box select {
    background: url(../images/jt.png)no-repeat right 20px center;
    background-size: 14px auto;
}

#c-contact .c-right-box textarea {
    margin-bottom: 24px;
    width: 100%;
    height: 156px;
    padding: 15px 20px;
    color: #999;
    border: 1px solid #eaeaea;
}

#c-contact .c-right-box button {
    width: 100%;
    height: 56px;
    background: #f25e20;
    color: #fff;
    cursor: pointer;
}


/* 加入我们 */

#c-join {
    padding: 100px 0;
}

#c-join .c-list {
    display: flex;
    align-items: center;
    width: 100%;
    font-size: 16px;
    line-height: 26px;
    color: #666;
    cursor: pointer;
    transition: .5s;
}

#c-join .c-list-wrap {
    max-width: 1268px;
    margin: 0 auto 100px;
}

#c-join .c-list-wrap .c-item {
    border-bottom: 1px solid #f8f8f8;
}

#c-join .c-list-wrap .c-item:nth-child(odd) .c-list,
#c-join .c-list-wrap .c-item.active .c-list {
    background: #f2f2f2;
}

#c-join .c-item1 {
    padding: 25px 40px;
    width: -webkit-calc(100% - 100px);
    width: calc(100% - 100px);
}

#c-join .c-item2 {
    padding: 25px 40px;
    width: 100px;
    font-size: 20px;
}

#c-join .c-item2 i {
    transition: .5s;
}

#c-join .c-list-wrap .c-item.active .c-item2 i {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

#c-join .c-text {
    display: none;
    padding: 40px;
    line-height: 2;
    color: #666;
}


/* 新闻列表 */

#c-news {
    padding: 100px 0;
}

#c-news .c-list {
    padding-bottom: 40px;
    margin: 0 -.46rem;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}

#c-news .c-list li {
    margin-bottom: 40px;
    padding: 0 .46rem;
    width: 33.3333%;
}

#c-news .c-list .c-wrap {
    display: block;
    color: #666;
}

#c-news .c-list .c-wrap .c-img-box {
    overflow: hidden;
    height: 2.6rem;
}

#c-news .c-list .c-wrap .c-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s;
}

#c-news .c-list .c-wrap:hover .c-img-box img {
    transform: scale(1.05, 1.05);
    -webkit-transform: scale(1.05, 1.05);
}

#c-news .c-list .c-wrap .c-title {
    padding-right: 60px;
    font-size: 18px;
    line-height: 28px;
    margin: 25px 0 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    transition: .5s;
    background-position: right center;
    background-repeat: no-repeat;
    background-size: 46px auto;
    color: #333;
}

#c-news .c-list .c-wrap .c-text {
    font-size: 14px;
    line-height: 24px;
    color: #999;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 2;
}

#c-news .c-list .c-wrap:hover .c-title {
    color: #00a2e9;
    background-image: url(../images/jt2.png);
}

#c-news .c-hr {
    margin-bottom: 100px;
    border-top: 4px solid #00a2e9;
}

#c-news.c-dt {
    background: #f8f8f8;
}

#c-news.c-dt .c-list {
    margin-bottom: -40px;
    padding-bottom: 0;
}

#c-news.c-dt2 .c-common-title .c-title {
    color: #666;
}


/* 常见问题 */

#c-faq {
    padding: 100px 0;
}

#c-faq .c-main-wrap {
    max-width: 1268px;
    margin: 0 auto;
    padding: 0 50px 80px;
    border: 6px solid #eaeaea;
}

#c-faq .c-list {
    margin-bottom: 80px;
}

#c-faq .c-list li {
    padding: 40px 0 20px;
    border-bottom: 1px solid #ccc;
}

#c-faq .c-list .c-title {
    position: relative;
    padding-left: 40px;
    font-size: 18px;
    line-height: 22px;
    cursor: pointer;
    transition: .5s;
}

#c-faq .c-list li.active .c-title {
    color: #00a2e9;
}

#c-faq .c-list .c-title::before {
    content: "Q";
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 22px;
    background: url(../images/wen.png)no-repeat center;
    background-size: 100%;
    font-size: 12px;
    line-height: 18px;
    text-align: center;
    color: #fff;
}

#c-faq .c-list .c-bottom-box {
    display: none;
    padding-top: 25px;
}

#c-faq .c-list .c-text-box {
    position: relative;
    padding: 30px;
    border-left: 40px solid #fff;
    background: #f8f8f8;
    line-height: 2;
    color: #999;
}

#c-faq .c-list .c-text-box::before {
    content: "A";
    position: absolute;
    top: 0;
    left: -40px;
    width: 20px;
    height: 22px;
    background: url(../images/da.png)no-repeat center;
    background-size: 100%;
    font-size: 12px;
    line-height: 18px;
    text-align: center;
    color: #fff;
}


/* 新闻详情 */

#c-news2 {
    padding: 100px 0;
}

#c-news2 .c-main-wrap {
    margin: 0 auto;
    width: 100%;
    max-width: 1268px;
}

#c-news2 .c-title {
    font-size: 36px;
    line-height: 46px;
    color: #00a2e9;
    text-align: center;
}

#c-news2 .c-time-box {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 30px 0 70px;
    line-height: 26px;
    color: #999;
}

#c-news2 .c-time-box .c-time span {
    color: #00a2e9;
}

#c-news2 .c-time-box .c-bshare {
    display: flex;
    align-items: center;
}

#c-news2 .c-text-box {
    line-height: 2;
    color: #666;
}

#c-news2 .c-text-box img {
    max-width: 100%;
    height: auto !important;
}

#c-news2 .c-end {
    margin-bottom: 50px;
    padding: 50px 0;
    line-height: 26px;
    text-align: center;
    color: #f25e20;
    border-bottom: 4px solid #f25e20;
}


/* 产品列表 */

#c-product {
    padding: 100px 0;
}

#c-product .c-list {
    margin-bottom: 100px;
    margin-top: -50px;
}

#c-product .c-list li {
    padding: 50px 0;
    border-bottom: 1px solid #eee;
}

#c-product .c-list .c-wrap {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

#c-product .c-list .c-img-box {
    width: 24%;
    height: 3.3rem;
    overflow: hidden;
}

#c-product .c-list .c-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s;
}

#c-product .c-list .c-wrap:hover .c-img-box img {
    transform: scale(1.05, 1.05);
    -webkit-transform: scale(1.05, 1.05);
}

#c-product .c-list .c-text-box {
    padding-left: 1rem;
    width: 70%;
}

#c-product .c-list .c-text-box .c-title {
    font-size: 36px;
    line-height: 46px;
    color: #666;
}

#c-product .c-list .c-text-box .c-hr {
    margin: 30px 0 50px;
    width: 70px;
    border-top: 8px solid #00a2e9;
}

#c-product .c-list .c-text-box .c-text {
    margin-bottom: 80px;
    color: #999;
    line-height: 2;
}

#c-product .c-list .c-text-box .c-btn {
    padding-right: 58px;
    display: inline-block;
    line-height: 26px;
    color: #666;
    background: url(../images/jt3.png)no-repeat right center;
    background-size: 36px auto;
}


/* 顶部当前位置 */

#c-top-location {
    margin-top: 100px;
    padding: 15px 0;
    font-size: 12px;
    line-height: 22px;
    color: #999;
    background: #f7f7f7;
}

#c-top-location a {
    color: #999;
    transition: .5s;
}

#c-top-location a:hover {
    color: #00a2e9;
}

#c-top-location .c-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

#c-top-location .c-wrap .c-return i {
    margin-right: 5px;
}


/* 产品详情 */

#c-product2 {
    padding: 60px 0;
    border-bottom: 1px solid #d8d8d8;
}

#c-product2 .c-main-wrap {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    background: #f5f5f5;
}

#c-product2 .c-main-wrap .c-img-box {
    width: 50%;
    height: 5.78rem;
    overflow: hidden;
}

#c-product2 .c-main-wrap .c-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s;
}

#c-product2 .c-main-wrap .c-img-box:hover img {
    transform: scale(1.05, 1.05);
    -webkit-transform: scale(1.05, 1.05);
}

#c-product2 .c-main-wrap .c-text-box {
    padding: 30px 1rem;
    width: 50%;
}

#c-product2 .c-main-wrap .c-text-box .c-title {
    margin-bottom: 60px;
    font-size: 34px;
    line-height: 44px;
    color: #00a2e9;
}

#c-product2 .c-main-wrap .c-text-box .c-text {
    margin-bottom: 60px;
    font-size: 18px;
    line-height: 2;
    color: #666;
}

#c-product2.c-dt .c-main-wrap .c-text-box .c-text p {
    position: relative;
    padding-left: 20px;
}

#c-product2.c-dt .c-main-wrap .c-text-box .c-text p::before {
    content: "";
    position: absolute;
    left: 0;
    top: 15px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #00a2e9;
}

#c-product2 .c-main-wrap .c-text-box .c-phone {
    display: inline-block;
    padding: 0 30px;
    font-size: 18px;
    line-height: 48px;
    border-radius: 24px;
    color: #fff;
    background: #f25e20;
}


/* 产品详情，推荐 */

#c-product3 {
    padding: 60px 0 100px;
}

#c-product3 .c-main-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

#c-product3 .c-left-box {
    width: 63%;
}

#c-product3 .c-left-box .c-title {
    font-size: 18px;
    line-height: 60px;
    padding: 0 20px;
    color: #fff;
    background: #00a2e9;
}

#c-product3 .c-left-box .c-text-box {
    padding: 40px;
    border: 1px solid #eaeaea;
}

#c-product3 .c-left-box .c-text-box .c-note {
    padding: 40px;
    line-height: 2;
    color: #666;
    background: #e6f3ff;
}

#c-product3 .c-left-box .c-text-box .c-title2 {
    margin-bottom: 20px;
    padding: 40px 0 20px;
    border-bottom: 1px solid #00a2e9;
    font-size: 22px;
    color: #00a2e9;
    line-height: 1;
}

#c-product3 .c-left-box .c-text-box .c-text {
    line-height: 2;
    color: #999;
}

#c-product3 .c-left-box .c-text-box img {
    max-width: 100%;
    height: auto !important;
}

#c-product3 .c-right-box {
    width: 31.7%;
    border: 1px solid #eaeaea;
}

#c-product3 .c-right-box .c-title {
    padding: 0 20px;
    font-size: 18px;
    line-height: 58px;
    color: #00a2e9;
    border-bottom: 1px solid #eaeaea;
}

#c-product3 .c-right-box .c-list {
    padding: 20px 20px 0;
}

#c-product3 .c-right-box .c-list li {
    margin-bottom: 60px;
}

#c-product3 .c-right-box .c-list .c-wrap {
    display: block;
}

#c-product3 .c-right-box .c-list .c-wrap .c-img-box {
    height: 2.64rem;
    overflow: hidden;
}

#c-product3 .c-right-box .c-list .c-wrap .c-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s;
}

#c-product3 .c-right-box .c-list .c-wrap:hover .c-img-box img {
    transform: scale(1.05, 1.05);
    -webkit-transform: scale(1.05, 1.05);
}

#c-product3 .c-right-box .c-list .c-wrap .c-title2 {
    padding-top: 25px;
    text-align: center;
    font-size: 28px;
    line-height: 38px;
    color: #666;
    transition: .5s;
}

#c-product3 .c-right-box .c-list .c-wrap:hover .c-title2 {
    color: #00a2e9;
}


/* 合作伙伴 */

#c-partner {
    padding: 100px 0;
    background: #f5f5f5;
    background: url(../images/hb-bg.jpg)no-repeat center;
    background-size: cover;
}

.c-banner2 {
    padding-bottom: 60px;
}

.c-banner2 .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: .6rem;
}

.c-banner2 .swiper-slide img {
    max-width: 100%;
    max-height: 100%;
}

.c-banner2 .swiper-pagination {
    bottom: 0;
}

.c-banner2 .swiper-pagination-bullet-active {
    background: #00a2e9;
}


/* 产品 */

#c-product4 {
    padding: 100px 0;
}

.c-banner3-wrap {
    margin-bottom: 70px;
    position: relative;
}

.c-banner3-wrap .c-prev,
.c-banner3-wrap .c-next {
    position: absolute;
    top: 50%;
    margin-top: -12px;
    width: 24px;
    height: 24px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    cursor: pointer;
}

.c-banner3-wrap .c-prev {
    left: -1.18rem;
    background-image: url(../images/prev2.png);
}

.c-banner3-wrap .c-next {
    right: -1.18rem;
    background-image: url(../images/next2.png);
}

.c-banner3-wrap .c-prev:hover {
    background-image: url(../images/prev2-h.png);
}

.c-banner3-wrap .c-next:hover {
    background-image: url(../images/next2-h.png);
}

.c-banner3 .c-wrap {
    display: block;
}

.c-banner3 .c-wrap .c-img-box {
    height: 3.86rem;
    overflow: hidden;
    overflow: hidden;
    border-radius: 10px;
    background: #f3f3f3;
}

.c-banner3 .c-wrap .c-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s;
}

.c-banner3 .c-wrap:hover .c-img-box img {
    transform: scale(1.05, 1.05);
    -webkit-transform: scale(1.05, 1.05);
}

.c-banner3 .c-wrap .c-title {
    padding-top: 25px;
    font-size: 22px;
    line-height: 32px;
    color: #666;
    text-align: center;
}


/* 解决方案 */

#c-solution {
    padding: 100px 0;
    background: #f8f8f8;
}

#c-solution .c-list {
    margin-bottom: 70px;
}

#c-solution .c-list li:nth-child(1),
#c-solution .c-list li:nth-child(3) {
    float: left;
    width: 31%;
}

#c-solution .c-list li:nth-child(2) {
    float: left;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    width: 38%;
}

#c-solution .c-list li:nth-child(1) .c-wrap,
#c-solution .c-list li:nth-child(3) .c-wrap {
    height: 4.44rem;
}

#c-solution .c-list li:nth-child(2) .c-wrap {
    float: left;
    height: 2.22rem;
}

#c-solution .c-list li:nth-child(2) .c-wrap:nth-child(2),
#c-solution .c-list li:nth-child(2) .c-wrap:nth-child(3) {
    width: 50%;
}

#c-solution .c-list .c-wrap {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    overflow: hidden;
}

#c-solution .c-list .c-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s;
}

#c-solution .c-list .c-wrap .c-title {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 25px 30px;
    width: 100%;
    font-size: 24px;
    color: #fff;
    line-height: 34px;
    text-align: center;
}

#c-solution .c-list .c-wrap:hover img {
    transform: scale(1.05, 1.05);
    -webkit-transform: scale(1.05, 1.05);
}

#c-solution2 {
    padding: 140px 0;
    background-position: right center;
    background-repeat: no-repeat;
    background-size: cover;
}

#c-solution2 .c-title {
    margin-bottom: 40px;
    font-size: 46px;
    line-height: 66px;
    color: #00a2e9;
}

#c-solution2 .c-common-btn2 {
    margin: 0;
}


/* 公共按钮 */

.c-common-btn1 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    width: 180px;
    border-radius: 21px;
    line-height: 40px;
    border: 1px solid #00a2e9;
    color: #fff;
    background: #00a2e9;
    transition: .5s;
}

.c-common-btn1 i {
    margin-left: 10px;
}

.c-common-btn1:hover {
    color: #00a2e9;
    background: transparent;
}

.c-common-btn2 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    width: 180px;
    border: 1px solid #00a2e9;
    border-radius: 21px;
    line-height: 40px;
    color: #00a2e9;
    transition: .5s;
}

.c-common-btn2 i {
    margin-left: 10px;
}

.c-common-btn2:hover {
    color: #fff;
    background: #00a2e9;
}


/* 表单 */

#c-form {
    padding: 100px 0;
    background-position: right center;
    background-repeat: no-repeat;
    background-size: cover;
}

#c-form .c-list {
    margin: 0 -10px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
}

#c-form .c-list li {
    padding: 0 10px;
    width: 29.6666%;
}

#c-form .c-list li:last-child {
    padding: 0 10px;
    width: 11%;
}

#c-form .c-list button {
    width: 100%;
    height: 116px;
    border-radius: 5px;
    font-size: 20px;
    color: #fff;
    background: #f25e20;
}

#c-form .c-list input {
    margin-bottom: 20px;
    padding: 0 20px;
    width: 100%;
    height: 48px;
    border-radius: 5px;
    border: 1px solid #ccc;
    background: #fff;
    color: #999;
}

#c-form .c-list textarea {
    padding: 15px 20px;
    width: 100%;
    height: 116px;
    border-radius: 5px;
    line-height: 26px;
    background: #fff;
    border: 1px solid #ccc;
    color: #999;
}

#c-form .c-list select {
    margin-bottom: 20px;
    padding: 0 20px;
    width: 100%;
    height: 48px;
    border-radius: 5px;
    border: 1px solid #ccc;
    background: #fff url(../images/sjx.png) no-repeat right 20px center / 14px auto;
}


/* 新闻列表 */

#c-news3 {
    padding: 100px 0;
}

#c-news3 .c-list {
    margin: 0 -35px;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}

#c-news3 .c-list li {
    margin-bottom: 70px;
    width: 50%;
    padding: 0 35px;
}

#c-news3 .c-list .c-wrap {
    display: block;
}

#c-news3 .c-list .c-wrap .c-img-box {
    height: 2.6rem;
    overflow: hidden;
}

#c-news3 .c-list .c-wrap .c-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s;
}

#c-news3 .c-list .c-wrap:hover .c-img-box img {
    transform: scale(1.05, 1.05);
    -webkit-transform: scale(1.05, 1.05);
}

#c-news3 .c-list .c-wrap .c-title {
    margin: 30px 0 25px;
    font-size: 22px;
    line-height: 32px;
    color: #333;
    transition: .5s;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 1;
}

#c-news3 .c-list .c-wrap:hover .c-title {
    color: #00a2e9;
}

#c-news3 .c-list .c-wrap .c-text {
    font-size: 14px;
    line-height: 25px;
    color: #999;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 2;
}


/* 公共盒子 */

#c-common-box {
    padding: 100px 0;
}

#c-common-box .c-main-wrap {
    margin: 0 auto;
    padding: 50px;
    max-width: 1268px;
    background: #f8f8f8;
}

#c-common-box .c-text-box {
    font-size: 14px;
    line-height: 2;
    color: #666;
}

#c-common-box .c-list {
    margin-bottom: -10px;
}

#c-common-box .c-list.c-dt {
    margin-bottom: 40px;
}

#c-common-box .c-list.c-dt:last-child {
    margin-bottom: 0;
}

#c-common-box .c-title {
    font-weight: normal;
    font-size: 18px;
    line-height: 1;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ccc;
    color: #00a2e9;
}

#c-common-box .c-box {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}

#c-common-box .c-box a {
    display: inline-block;
    margin: 0 10px 10px 0;
    padding: 0 10px;
    line-height: 38px;
    color: #666;
    background: #efefef;
    transition: .5s;
}

#c-common-box .c-box a h3 {
    font-size: 18px;
    font-weight: normal;
}

#c-common-box .c-box a:hover {
    color: #fff;
    background: #00a2e9;
}

#c-common-box .c-list.c-dt .c-box a {
    margin: 0 20px 0 0;
    padding: 0;
    background: transparent;
}

#c-common-box .c-list.c-dt .c-box a:hover {
    color: #00a2e9;
    background: transparent;
}


/* 搜索 */

#c-top-search {
    margin-top: 100px;
    padding: 100px 0 168px;
    background: #f5f5f5;
}

#c-top-search form {
    display: flex;
    align-items: flex-start;
    height: 68px;
    border: 1px solid #00a2e9;
    border-radius: 34px;
}

#c-top-search form input {
    padding: 0 20px;
    width: 80%;
    height: 100%;
}

#c-top-search form button {
    width: 20%;
    height: 100%;
    border-radius: 33px;
    color: #fff;
    background: #00a2e9;
}


/* 搜索文本 */

#c-search-text {
    line-height: 50px;
}

#c-search-text span {
    font-weight: bold;
}

#pag_bottom a {
    color: #333;
    transition: .5s;
}

#pag_bottom a:hover {
    color: #00a2e9;
}

#c-news2 .c-text-box a {
    color: #00a2e9;
}
#c-top-banner .c-container{
    z-index: 2;
}
.video-banner #c-banner-video{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    min-width: 100%;
    min-height: 100%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  #c-top-menu{
      z-index: 4;
  }
  @media (max-width: 991px) {
    #c-top-banner{
        margin-top: 60px !important;
    }
  }
  #c-conmon-box .t-img .t-img2{
      width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    overflow: inherit;
    height: auto !important;
  }
  #c-conmon-box .t-img .t-img2 img{
      width: 15%;
      margin-right: 6.25%;
      height: 1rem;
      object-fit: contain;
      border: 1px solid #ddd;
      border-radius: 15px;
      padding: 5px;
      transition: none;
  }
  #c-conmon-box .t-img .t-img2 img:nth-of-type(n+6){
      margin-top: 20px;
  }
  #c-conmon-box .t-img .t-img2 img:nth-of-type(5n){
      margin-right: 0;
  }
  #c-conmon-box .t-img .t-img2:hover img{
    -webkit-transform:none;
    transform: none;

  }
  @media (max-width: 1599px) {
    #c-conmon-box .t-img .t-img2 img{
        height: 1.5rem;
    }
  }
  @media (max-width: 1100px) {
    #c-conmon-box .t-img .t-img2 img{
        width: 30%;
        margin-right: 3.3%;
    }
    #c-conmon-box .t-img .t-img2 img:nth-of-type(n+4){
        margin-top: 20px;
    }
    #c-conmon-box .t-img .t-img2 img:nth-of-type(n+6) {
        margin-top: 20px;
    }
    #c-conmon-box .t-img .t-img2 img:nth-of-type(5n){
        margin-right: auto;
    }
  }
  @media (max-width: 767px) {
    #c-conmon-box .t-img .t-img2 img {
        width: 48%;
        margin-right: 4% !important;
        height: 2.5rem;
    }
    #c-conmon-box .t-img .t-img2 img:nth-of-type(2n){
        margin-right: 0 !important;
    }
    #c-conmon-box .t-img .t-img2 img:nth-of-type(n+3){
        margin-top: 20px;
    }
  }