﻿@charset "utf-8";

/* imaged */
.imged {
    position: relative;
    padding-bottom: 65%;
    width: 100%;
    height: 100%;
    display: block;
    overflow: hidden;
    transition: 0.5s;
    background-size: cover !important;
    background-position: center top !important;
}

.imged img {
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    transition: all 0.5s ease 0s;
    object-fit: cover;
    display: none;
}

.scale {
    overflow: hidden;
    position: relative;
}



.imged video {
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    transition: all 0.5s ease 0s;
    object-fit: cover;
}

video {
    max-width: 100%;
}



a:hover .imged {
    transform: scale(1.1);
}
/* imaged */


* {
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
}

html,
body {
    color: #333;
    font-family: "微软雅黑";
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: left;
}

body {
    font-size: .16rem;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    color: #333;
}

img,
input {
    border: 0;
    outline: none;
}


html {
    font-size: 100px;
}






@media screen and (max-width:1024px) {

    html {
        font-size: 85px;
    }

    .pc {
        display: none !important;
    }

    .wap {
        display: block !important;
    }
}

.icon {
    font-size: 0;
}

.icon img {
    display: inline-block;
    vertical-align: middle;
    max-height: 100%;
}

a:hover .icon img {
    animation: jello 1s linear;
}

/* 小图标hover扭动效果 */


/* 滚动条样式 */
@media screen and (min-width:1024px) {
    ::-webkit-scrollbar {
        width: 6px;
        height: 9px;
    }

    ::-webkit-scrollbar-track {
        width: 3px;
        background: rgba(0, 0, 0, .5);
        -webkit-border-radius: 2em;
        -moz-border-radius: 2em;
        border-radius: 2em;
    }

    ::-webkit-scrollbar-thumb {
        background-color: #073894;
        background-clip: padding-box;
        min-height: 28px;
        -webkit-border-radius: 2em;
        -moz-border-radius: 2em;
        border-radius: 2em;
    }

    ::-webkit-scrollbar-thumb:hover {
        background-color: #073894
    }
}

body .clear {
    clear: both;
    height: 0 !important;
    width: 0 !important;
    border: none !important;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
}

.px1314 {
    max-width: 1314px;
    margin: 0 auto;
}


/* 弹性布局的常用样式预设 */
.flex {
    display: flex;
}

/* 弹性布局-横向对齐方式 */
.flex-jcfs {
    display: flex;
    justify-content: flex-start;
}

.flex-jcct {
    display: flex;
    justify-content: center;
}

.flex-jcfe {
    display: flex;
    justify-content: flex-end;
}

.flex-jcsb {
    display: flex;
    justify-content: space-between;
}

.flex-jcsa {
    display: flex;
    justify-content: space-around;
}

/* 弹性布局-纵向对齐方式 */
.flex-alfs {
    display: flex;
    align-items: flex-start;
}

.flex-alct {
    display: flex;
    align-items: center;
}

.flex-alend {
    display: flex;
    align-items: flex-end;
}

/* 文字进入式下划线 */
.titline i {
    display: inline;
    font-style: normal;
    position: relative;
    background-image: linear-gradient(#006AB5, #006AB5);
    background-position: right bottom;
    background-size: 0 1px;
    background-repeat: no-repeat;
    transition: background-size .5s;
}

a:hover .titline i {
    background-position: left bottom;
    background-size: 100% 1px;
    font-weight: inherit;
    color: inherit;
}

a:hover .titline {
    color: #006AB5 !important;
}


.pic {
    padding-top: 75%;
    position: relative;
    overflow: hidden;
}

.pic::before {
    position: absolute;
    top: 0;
    left: -90%;
    z-index: 2;
    display: block;
    content: "";
    width: 50%;
    height: 100%;
    opacity: .25;
    pointer-events: none;
    /* background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 53) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, .53) 100%); */
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 53) 50%, rgba(255, 255, 255, 0) 70%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 53) 50%, rgba(255, 255, 255, 0) 70%);
    -webkit-transform: skewX(-25deg);
    -ms-transform: skewX(-25deg);
    transform: skewX(-25deg);
    z-index: 3;
}

.pic img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transition: all 1s;
}

a:hover .pic img {
    transform: scale(1.05);
}

a:hover .pic:before {
    -webkit-animation: shine 1s;
    animation: shine 1s
}

@-webkit-keyframes shine {
    100% {
        left: 125%
    }
}

@keyframes shine {
    100% {
        left: 125%
    }
}

.pic div {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 100%;
    height: 100%;
    transition: all .8s;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

a:hover .pic div {
    width: 110%;
    height: 110%;
}




/* html默认 */
html {
    font-size: 100px;
}


@media (min-width:1930px) and (max-width:3000px) {
	html {
		font-size: 120px;
	}

}

@media (min-width:3000px) and (max-width:4000px) {
	html {
		font-size: 130px;
	}

}

@media screen and (max-width:1930px) {
	html {
		font-size: 100px;
	}
}

@media screen and (max-width:1800px) {
	html {
		font-size: 95px;
	}
}

@media screen and (max-width:1600px) {
	html {
		font-size: 90px;
	}
}

@media screen and (max-width:1400px) {
	html {
		font-size: 85px;
	}
}

@media screen and (max-width:1200px) {
	html {
		font-size: 85px !important;
	}
}

