/*reset css start*/
input:focus,
select:focus {
    outline: none;
}

input {
    border: none;
}

input[type=range].RangeInput {
    width: 260px;
    height: 6px;
    color: rgb(196, 196, 196);
    cursor: pointer;
    padding: 0;
    margin: 0 10px;
    background: #dedede;
    border-radius: 20px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* input[type=range].RangeInput::-webkit-slider-runnable-track {height: 6px;cursor: pointer;background: #dedede;border-radius: 2px} */
input[type=range].RangeInput::-webkit-slider-thumb {
    width: 16px;
    height: 16px;
    margin-top: -2px;
    cursor: pointer;
    background: #d3d3d3;
    border-radius: 50%;
    -webkit-appearance: none;
    appearance: none
}

textarea:focus {
    outline: none;
}

body,
html {
    height: 100%;
    width: 100%;
    min-width: 1200px
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
li,
p {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Microsoft YaHei";
    min-width: 1200px;
    max-width: 1920px;
    margin: 0 auto;
}

a {
    text-decoration: none;
    display: block;
    cursor: pointer;
}

i,
em {
    font-style: normal
}

li {
    list-style: none
}

img {
    border: 0 none;
	width: 100%;
	height: 100%;
}

/*common css*/
.clearfix {
    *zoom: 1;
}

.clearfix:after {
    content: "";
    display: block;
    clear: both;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.txt-cut1 {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.txt-cut2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.txt-cut3 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.txt-cut {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}

.flexBox {
    display: box;
    display: -moz-box;
    display: -webkit-flex;
    display: flex;
}

.imgBox {
    overflow: hidden;
}

.imgBox>img {
    width: 100%;
    height: 100%;
    -webkit-transition: 0.6s;
    transition: 0.6s;
}

a:hover>.imgBox>img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1)
}

.w1200 {
    width: 1200px;
    margin: 0 auto;
}

.btn_an {
    position: relative;
    overflow: hidden;
}

.btn_an:after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    transform: scale(0, 0);
    opacity: 0;
    transition: transform .3s, opacity .5s;
}

.btn_an:hover:after {
    background-image: radial-gradient(circle, #000 10%, transparent 10.01%);
    background-repeat: no-repeat;
    background-position: 50%;
    transform: scale(10, 10);
    opacity: 0.3;
    transition: 0s;
}

.waves-effect {
    position: relative;
    cursor: pointer;
    display: inline-block;
    overflow: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    vertical-align: middle;
    z-index: 1;
    -webkit-transition: .3s ease-out;
    transition: .3s ease-out
}

.waves-effect::before,
.waves-effect::after {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    bottom: 100%;
    left: 0;
    z-index: -1;
    -webkit-transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
    transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}

.waves-effect::before {
    background-image: linear-gradient(120deg, #59595731 0%, #2f2f2f31 35%, #11111131 100%);
}

.waves-effect::after {
    background-image: linear-gradient(120deg, #595957 0%, #2f2f2f 35%, #111111 100%);
}

.waves-effect:hover::before,
.waves-effect:hover::after {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
}

.waves-effect:hover::after {
    -webkit-transition-delay: 0.175s;
    transition-delay: 0.175s;
}

/* ripple */
.ripple {
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.ripple:after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    background-image: radial-gradient(circle, #666 10%, transparent 10.01%);
    background-repeat: no-repeat;
    background-position: 50%;
    transform: scale(10, 10);
    opacity: 0;
    transition: transform .3s, opacity .5s;
}

.ripple:active:after {
    transform: scale(0, 0);
    opacity: .3;
    transition: 0s;
}

.ripple {
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

/* Ma */
.btn_ma {
    vertical-align: middle;
    position: relative;
    -webkit-transition: background-color 0.3s, color 0.3s;
    transition: background-color 0.3s, color 0.3s;
}

.btn_ma::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    bottom: -20px;
    right: -20px;
    background: inherit;
    border-radius: 50px;
    z-index: -1;
    opacity: 0.4;
    -webkit-transform: scale3d(0.73, 0.42, 1);
    transform: scale3d(0.73, 0.42, 1);
}

.btn_ma:hover {
    -webkit-transition: background-color 0.1s 0.3s, color 0.1s 0.3s;
    transition: background-color 0.1s 0.3s, color 0.1s 0.3s;
    -webkit-animation: anim-moema-1 0.3s forwards;
    animation: anim-moema-1 0.3s forwards;
}

.btn_ma:hover::before {
    -webkit-animation: anim-moema-2 0.3s 0.3s forwards;
    animation: anim-moema-2 0.3s 0.3s forwards;
}

@-webkit-keyframes anim-moema-1 {
    60% {
        -webkit-transform: scale3d(0.8, 0.8, 1);
        transform: scale3d(0.8, 0.8, 1);
    }

    85% {
        -webkit-transform: scale3d(1.1, 1.1, 1);
        transform: scale3d(1.1, 1.1, 1);
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes anim-moema-1 {
    60% {
        -webkit-transform: scale3d(0.8, 0.8, 1);
        transform: scale3d(0.8, 0.8, 1);
    }

    85% {
        -webkit-transform: scale3d(1.1, 1.1, 1);
        transform: scale3d(1.1, 1.1, 1);
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@-webkit-keyframes anim-moema-2 {
    to {
        opacity: 0;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes anim-moema-2 {
    to {
        opacity: 0;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

/* Nk */
.btn_nk_bg {
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
}

.btn_nk.button--inverted {
    background: #fff;
    color: #7986cb;
}

.btn_nk>span {
    display: inline-block;
}

.btn_nk_bg:hover {
    background-color: #007db4;
}

.btn_nk:hover>span:nth-child(odd) {
    -webkit-animation: anim-nanuk-1 0.5s forwards;
    animation: anim-nanuk-1 0.5s forwards;
}

.btn_nk:hover>span:nth-child(even) {
    -webkit-animation: anim-nanuk-2 0.5s forwards;
    animation: anim-nanuk-2 0.5s forwards;
}

.btn_nk:hover>span:nth-child(odd),
.btn_nk:hover>span:nth-child(even) {
    -webkit-animation-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
    transition-animation-function: cubic-bezier(0.75, 0, 0.125, 1);
}

@-webkit-keyframes anim-nanuk-1 {

    0%,
    100% {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    49% {
        opacity: 1;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }

    50% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
        color: inherit;
    }

    51% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        color: #94070A;
    }

    100% {
        color: #94070A;
    }
}

@keyframes anim-nanuk-1 {

    0%,
    100% {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    49% {
        opacity: 1;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }

    50% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
        color: inherit;
    }

    51% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        color: #94070A;
    }

    100% {
        color: #94070A;
    }
}

@-webkit-keyframes anim-nanuk-2 {

    0%,
    100% {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    49% {
        opacity: 1;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    50% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        color: inherit;
    }

    51% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
        color: #ffff
    }

    100% {
        color: #94070A
    }
}

@keyframes anim-nanuk-2 {

    0%,
    100% {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    49% {
        opacity: 1;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    50% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        color: inherit;
    }

    51% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
        color: #94070A;
    }

    100% {
        color: #94070A;
    }
}

.btn_nk:hover>span:nth-child(1) {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

.btn_nk:hover>span:nth-child(2) {
    -webkit-animation-delay: 0.05s;
    animation-delay: 0.05s;
}

.btn_nk:hover>span:nth-child(3) {
    -webkit-animation-delay: 0.1s;
    animation-delay: 0.1s;
}

.btn_nk:hover>span:nth-child(4) {
    -webkit-animation-delay: 0.15s;
    animation-delay: 0.15s;
}

.btn_nk:hover>span:nth-child(5) {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

.btn_nk:hover>span:nth-child(6) {
    -webkit-animation-delay: 0.25s;
    animation-delay: 0.25s;
}

.btn_nk:hover>span:nth-child(7) {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}

.btn_nk:hover>span:nth-child(8) {
    -webkit-animation-delay: 0.35s;
    animation-delay: 0.35s;
}

.btn_nk:hover>span:nth-child(9) {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
}

.btn_nk:hover>span:nth-child(10) {
    -webkit-animation-delay: 0.45s;
    animation-delay: 0.45s;
}

.btn_nk:hover>span:nth-child(11) {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

/* Tamaya */
.btn_ta {
    overflow: hidden;
}

.btn_ta::before,
.btn_ta::after {
    content: attr(data-text);
    position: absolute;
    width: 100%;
    height: 50%;
    left: 0;
    background: #007db4;
    color: #ffffff;
    overflow: hidden;
    -webkit-transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    -webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
    transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}

.btn_ta::before {
    top: 0;
}

.btn_ta::after {
    bottom: 0;
    line-height: 0;
}

.btn_ta>span {
    display: block;
    -webkit-transform: scale3d(0.2, 0.2, 1);
    transform: scale3d(0.2, 0.2, 1);
    opacity: 0;
    -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
    transition: transform 0.3s, opacity 0.3s;
    -webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
    transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}

.btn_ta:hover::before {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
}

.btn_ta:hover::after {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
}

.btn_ta:hover>span {
    opacity: 1;
    font-size: 16px;
    font-weight: bold;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
}

/* Wayra */
.btn_wa {
    position: relative;
    z-index: 1;
    overflow: hidden;
    -webkit-transition: border-color 0.3s, color 0.3s;
    transition: border-color 0.3s, color 0.3s;
    -webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.4, 1);
    transition-timing-function: cubic-bezier(0.2, 1, 0.4, 1);
}

.btn_wa::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 130%;
    height: 100%;
    background-image: #37474f;
    z-index: -1;
    -webkit-transform: rotate3d(0, 0, 1, -45deg) translate3d(0, -3em, 0);
    transform: rotate3d(0, 0, 1, -45deg) translate3d(0, -3em, 0);
    -webkit-transform-origin: 0% 100%;
    transform-origin: 0% 100%;
    -webkit-transition: -webkit-transform 0.4s, opacity 0.4s, background-image 0.4s;
    transition: transform 0.4s, opacity 0.4s, background-image 0.4s;
}

.btn_wa:hover::before {
    opacity: 1;
    background-image: linear-gradient(to bottom, #ff9e01 0%, #f96c3d 100%);
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
    -webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
    transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}

#inputCopy {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: -10;
}

/* 顶部 */
header {
    /* background: url(../img/topBg.png) no-repeat; */
    background-size: cover;
    max-width: 1920px;
    min-width: 1200px;
    width: 100%;
    position: relative;
    background-color: #94070a;
    box-shadow: 0 .05rem .2rem #0000001a;
    height: 180px;
}

header>.line {
    background: #e5e5e5;
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: 47px;
}

header>.w1200 {
    position: relative;
    padding-top: 20px;
}

header>.w1200>a {
    display: inline-block;
    width: 571px;
    height: 78px;
}

header>.w1200>.right_btn {
    width: 200px;
    height: 50px;
    padding-top: 7px;
}

header>.w1200>.right_btn>a {
    float: right;
    width: 125px;
    letter-spacing: 2px;
    text-align: center;
    height: 50px;
    padding-top: 20px;
    font-size: 16px;
    color: rgb(51, 51, 51);
}

header>.w1200>.right_btn>a:hover {
    color: #449FD3;
}

header>.w1200>.code {
    font-size: 18px;
    color: #fff;
    line-height: 26px;
    letter-spacing: 2px;
    position: absolute;
    top: 70px;
    left: 590px;
    display: block;
    width: 185px;
}
header>.w1200>.jxjy_txt{
    width: 195px;
    height: 31px;
    font-family: MicrosoftYaHei;
    font-size: 30px;
    line-height: 31px;
    font-weight: normal;
    font-stretch: normal;
    letter-spacing: 2px;
    color: #ffffff;
    top: 30px;
    position: absolute;
    left: 590px;
}

header>.w1200>a.back {
    font-size: 16px;
    color: #fff;
    line-height: 26px;
    letter-spacing: 2px;
    display: inline-block;
    width: 85px;
    margin-top: 26px;
}

header>.w1200>.fr {
    margin-top: 26px;
    margin-left: 10px;
}

header>.w1200>.fr>.search_box {
    position: relative;
    min-width: 26px;
    min-height: 26px;
    z-index: 999;
}

header>.w1200>.fr>.search_box>.search {
    /* display: none; */
    width: 180px;
    height: 26px;
    background-color: #fff;
    border-radius: 20px;
    padding-right: 40px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding-left: 8px;
    margin-right: 20px;
}

header>.w1200>.fr>.search_box>i {
    position: absolute;
    right: 2px;
    width: 26px;
    height: 26px;
    display: inline-block;
}

/* header>.w1200>.fr>.search_box>i.start_search {
    background: url("../img/serach_icon.png") no-repeat center;
}

header>.w1200>.fr>.search_box>i.close_search {
    display: none;
    background: url("../img/close_icon.png") no-repeat center;
} */

header>.w1200>.fr>.search_box>.btn_search {
    /* display: none; */
    position: absolute;
    width: 25px;
    height: 20px;
    right: 35px;
    top: 3px;
    background: url("../img/search_btn.png") no-repeat center;
    cursor: pointer;
}

header>.w1200>nav {
    width: 100%;
    justify-content: space-between;
}

header>.w1200>nav {
    height: 47px;
    line-height: 47px;
    position: relative;
    margin-top: 28px;
}

header>.w1200>nav>li {
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    text-align: center;
    font-size: 16px;
    color: rgb(51, 51, 51);
    position: relative;
}

header>.w1200>nav>li>a {
    text-align: center;
    letter-spacing: 2px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    font-size: 18px;
    color: #fff;
    position: relative;
}

header>.w1200>nav>li:hover>a,
header>.w1200>nav>li.on>a {
    letter-spacing: 4px;
    font-size: 18px;
}

header>.w1200>nav>li>.nav_list {
    transition: all 0.3s;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: absolute;
    width: 180px;
    top: 47px;
    left: 50%;
    margin-left: -64px;
    background: rgba(0, 0, 0, 0.7);
    z-index: 99;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
}

header>.w1200>nav>li>.nav_list>li {
    padding: 0 20px 0px;
    padding-top: 24px;
    position: relative;
}

header>.w1200>nav>li>.nav_list>li>a {
    font-size: 16px;
    color: white;
    line-height: 16px;
    text-align: left;
}

header>.w1200>nav>li>.nav_list>li:last-child {
    margin-bottom: 24px;
}

header>.w1200>nav>li>.nav_list>li>a>span.icon {
    float: right;
    transition: 0.6s;
}

header>.w1200>nav>li>.nav_list>li>a .text {
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
}

header>.w1200>nav>li>.nav_list>li:hover>a .text {
    letter-spacing: 2px;
}

/* header>.w1200>nav > li >.nav_list>a:hover{border-bottom:1px dashed #bfbfbf;} */
header>.w1200>nav>li>.nav_list>li:hover a>.icon {
    transform: translateX(8px)
}

header>.w1200>nav>li:last-child>.nav_list {
    margin-left: -140px;
}

header>.w1200>nav>li>.nav_list>li>dl {
    width: 180px;
    position: absolute;
    left: 180px;
    top: -16px;
    background: rgba(0, 0, 0, 0.8);
    z-index: 100;
    transform: translateX(-20px);
    pointer-events: none;
    opacity: 0;
    transition: all .3s;
}

header>.w1200>nav>li>.nav_list>li>dl dd {
    padding: 0 20px 0px;
    padding-top: 24px;
}

header>.w1200>nav>li>.nav_list>li>dl dd:last-child {
    margin-bottom: 24px;
}

header>.w1200>nav>li>.nav_list>li>dl dd a {
    font-size: 16px;
    color: white;
    line-height: 16px;
    text-align: left;
}

header>.w1200>nav>li:hover .nav_list {
    opacity: 1;
    pointer-events: painted;
    transform: translateY(0);
}

header>.w1200>nav>li .nav_list>li:hover dl {
    transform: translateX(0px);
    pointer-events: painted;
    opacity: 1;
}


.bottomText {
    background: #333;
    text-align: center;
    line-height: 50px;
    height: 50px;
    letter-spacing: 2px;
    font-size: 14px;
    color: #fff;
}

.bottomText>i {
    display: inline-block;
    width: 18px;
    height: 25px;
    margin-left: 15px;
    margin-right: 8px;
    background: url("../img/beian.png") no-repeat top;
    vertical-align: middle;
}

.bottomText>a {
    display: inline;
    font-size: 14px;
    color: #fff;
    letter-spacing: 2px;
}


#pictureViewer {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, .6);
    z-index: 9999;
}

#pictureViewer>.content {
    /* background-color: #fff; */
    position: absolute;
    width: 88%;
    max-width: 1400px;
    height: 80%;
    margin: auto;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

@media only screen and (max-width: 1920px) {
    #pictureViewer>.content {
        max-width: 1200px;
    }
}

#pictureViewer .menu-bar {
    width: 100%;
}

#pictureViewer .menu-bar .handel {
    width: 40px;
    height: 40px;
    float: right;
    background-repeat: no-repeat;
    background-position: 50%;
    cursor: pointer;
}

#pictureViewer .menu-bar .handel:hover {
    /* background-color: #ff2e67; */

    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

#pictureViewer .menu-bar .handel.maximization {
    pointer-events: none;
}


#pictureViewer .menu-bar .handel.close-view {
    background-image: url(../img/close_icon.png);
    background-size: 30px;
}

#pictureViewer .handel-prev,
#pictureViewer .handel-next {
    display: inline-block;
    width: 80px;
    height: 80px;
    position: relative;
    top: calc(50% - 80px);
    background-repeat: no-repeat;
    background-size: 60px;
    background-position: 50%;
    cursor: pointer;

    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

#pictureViewer .handel-prev {
    background-image: url("../img/left_btn.png");
}

#pictureViewer .handel-next {
    background-image: url("../img/right_btn.png");
}

#pictureViewer .handel-prev:hover,
#pictureViewer .handel-next:hover {
    /* background-color: #ff2e67; */
    background-size: 80px;
}

#pictureViewer .picture-content {
    display: inline-block;
    width: calc(100% - 160px);
    height: calc(100% - 80px);
    position: absolute;
    margin: 0 auto;
    left: 0;
    right: 0;
}

#pictureViewer .picture-content .cover {
    position: absolute;
    margin: auto;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    /* max-height: 100%; */
}

#pictureViewer .counter {
    position: absolute;
    bottom: 0;
    height: 40px;
    line-height: 40px;
    width: 100%;
    text-align: center;
    color: #fafafa;
    font-size: 13px;
}

#pictureViewer .hide {
    display: none;
}

#pictureViewer .left {
    float: left;
}

#pictureViewer .right {
    float: right;
}

#pictureViewer .clear-flex {
    clear: both;
}

#pictureViewer img {
    max-width: 100%;
    /* max-height: 100%; */
}