.grid {
    float: left;
    list-style: none;
    margin: 10px auto 15px;
    padding: 0;
    /* left:-6px; */
}

.grid {
    width: 100%;
}

.grid:after {
    content: '';
    display: block;
    clear: both;
}

.grid li {
    display: block;
    float: left;
    padding: 0px;
    /* margin:7px 6px; */
    width: 33.33333333%;

    /* background:#fff; */
    /*opacity: 0;*/
    position: relative;
}

/*****20201109新加栅格 开始****/
.grid {
    margin-right: -1.155%;
    margin-left: -1.155%;
}

.grid:before,
.grid:after {
    display: table;
    content: " ";
}

.grid:after {
    clear: both;
}

.grid li {
    position: relative;
    min-height: 1px;
    padding: 0 0;
    width: 31%;
    margin: 1.155%;
}

.grid_a .column {
    overflow: hidden;
    padding-right: 10px;
    padding-left: 10px;
}

/*****20201109新加栅格 结束****/
.grid li::before {
    content: '';
    display: block;
    clear: both;
}

.grid li.shown,
.no-js .grid li,
.no-cssanimations .grid li {
    opacity: 1;
}

.grid li a,
.grid li img {
    outline: none;
    border: none;
    /*display: block;*/
    max-width: 100%;
    /*min-height: 112px;*/
}

/* Effect 1: opacity */
.grid.effect-1 li.animate {
    -webkit-animation: fadeIn 0.65s ease forwards;
    animation: fadeIn 0.65s ease forwards;
}

@-webkit-keyframes fadeIn {
    0% {
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
    }
    100% {
        opacity: 1;
    }
}

/* Effect 2: Move Up */
.grid.effect-2 li.animate {
    -webkit-transform: translateY(200px);
    transform: translateY(200px);
    -webkit-animation: moveUp 0.65s ease forwards;
    animation: moveUp 0.65s ease forwards;
}

@-webkit-keyframes moveUp {
    0% {
    }
    100% {
        -webkit-transform: translateY(0);
        opacity: 1;
    }
}

@keyframes moveUp {
    0% {
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

/* Effect 3: Scale up */
.grid.effect-3 li.animate {
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
    -webkit-animation: scaleUp 0.65s ease-in-out forwards;
    animation: scaleUp 0.65s ease-in-out forwards;
}

@-webkit-keyframes scaleUp {
    0% {
    }
    100% {
        -webkit-transform: scale(1);
        opacity: 1;
    }
}

@keyframes scaleUp {
    0% {
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}

/* Effect 4: fall perspective */
.grid.effect-4 {
    -webkit-perspective: 1300px;
    perspective: 1300px;
}

.grid.effect-4 li.animate {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform: translateZ(400px) translateY(300px) rotateX(-90deg);
    transform: translateZ(400px) translateY(300px) rotateX(-90deg);
    -webkit-animation: fallPerspective .8s ease-in-out forwards;
    animation: fallPerspective .8s ease-in-out forwards;
}

@-webkit-keyframes fallPerspective {
    0% {
    }
    100% {
        -webkit-transform: translateZ(0px) translateY(0px) rotateX(0deg);
        opacity: 1;
    }
}

@keyframes fallPerspective {
    0% {
    }
    100% {
        -webkit-transform: translateZ(0px) translateY(0px) rotateX(0deg);
        transform: translateZ(0px) translateY(0px) rotateX(0deg);
        opacity: 1;
    }
}

/* Effect 5: fly (based on http://lab.hakim.se/scroll-effects/ by @hakimel) */
.grid.effect-5 {
    -webkit-perspective: 1300px;
    perspective: 1300px;
}

.grid.effect-5 li.animate {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform-origin: 50% 50% -300px;
    transform-origin: 50% 50% -300px;
    -webkit-transform: rotateX(-180deg);
    transform: rotateX(-180deg);
    -webkit-animation: fly .8s ease-in-out forwards;
    animation: fly .8s ease-in-out forwards;
}

@-webkit-keyframes fly {
    0% {
    }
    100% {
        -webkit-transform: rotateX(0deg);
        opacity: 1;
    }
}

@keyframes fly {
    0% {
    }
    100% {
        -webkit-transform: rotateX(0deg);
        transform: rotateX(0deg);
        opacity: 1;
    }
}

/* Effect 6: flip (based on http://lab.hakim.se/scroll-effects/ by @hakimel) */
.grid.effect-6 {
    -webkit-perspective: 1300px;
    perspective: 1300px;
}

.grid.effect-6 li.animate {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
    -webkit-transform: rotateX(-80deg);
    transform: rotateX(-80deg);
    -webkit-animation: flip .8s ease-in-out forwards;
    animation: flip .8s ease-in-out forwards;
}

@-webkit-keyframes flip {
    0% {
    }
    100% {
        -webkit-transform: rotateX(0deg);
        opacity: 1;
    }
}

@keyframes flip {
    0% {
    }
    100% {
        -webkit-transform: rotateX(0deg);
        transform: rotateX(0deg);
        opacity: 1;
    }
}

/* Effect 7: helix (based on http://lab.hakim.se/scroll-effects/ by @hakimel) */
.grid.effect-7 {
    -webkit-perspective: 1300px;
    perspective: 1300px;
}

.grid.effect-7 li.animate {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
    -webkit-animation: helix .8s ease-in-out forwards;
    animation: helix .8s ease-in-out forwards;
}

@-webkit-keyframes helix {
    0% {
    }
    100% {
        -webkit-transform: rotateY(0deg);
        opacity: 1;
    }
}

@keyframes helix {
    0% {
    }
    100% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
        opacity: 1;
    }
}

/* Effect 8:  */
.grid.effect-8 {
    -webkit-perspective: 1300px;
    perspective: 1300px;
}

.grid.effect-8 li.animate {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform: scale(0.4);
    transform: scale(0.4);
    -webkit-animation: popUp .8s ease-in forwards;
    animation: popUp .8s ease-in forwards;
}

@-webkit-keyframes popUp {
    0% {
    }
    70% {
        -webkit-transform: scale(1.1);
        opacity: .8;
        -webkit-animation-timing-function: ease-out;
    }
    100% {
        -webkit-transform: scale(1);
        opacity: 1;
    }
}

@keyframes popUp {
    0% {
    }
    70% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
        opacity: .8;
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}

@media screen and (max-width: 999px) {
    .grid {
        width: 100%;
        /* margin:0px auto; */
        float: none;
        left: 0px;
        margin-right: 0px;
        margin-left: 0px;
    }

    .grid li {
        width: 33.333333%;
    }

}

@media screen and (max-width: 767px) {
    .grid { /* width: 92%; */
        width: 100%; /* margin:10px auto; */
        float: none; /* left: 5px; */
    }

    .grid li {
        width: 50%;
    }

}

@media screen and (max-width: 480px) {
    .grid {
        width: 100%; /* left: -5px; */
    }

    .grid li {
        width: 100%;
    }
}

@media screen and (max-width: 320px) {
    .grid { /* width: 89%; */
        width: 100%; /* left: -5px; */
    }

    .grid li {
        width: 100%;
    }
}

/*瀑布流*/
/* wrapper css */
#wrapper {
    margin-top: 70px;
    width: 100%;
}

#wrapper hgroup {
    text-align: center;
}

#wrapper h2 {
    margin: 5px 0;
    color: #FF6D99;
    text-shadow: 1px 1px 2px #A50031;
    font-size: 33px;
    font-family: Arial Narrow, Arial, sans-serif;
}

#wrapper h3 {
    font-style: italic;
    font-weight: normal;
    font-size: 18px;
    text-shadow: 1px 1px 0 #fff;
    color: #888;
    margin: 5px 0;
}

#container {
    position: relative;
    width: 705px;
    margin-top: 5px; /*padding-bottom: 10px; */
    z-index: -1;
}


.grid .imgholder img {
    width: 100%;
    background: #ccc;
    display: block;
    max-height: 100vh;
}

.grid .imgholder {
    overflow: hidden;
    z-index: -1;
    object-fit: cover;
}

.grid .imgholder:hover {
    background: #fff;
}

.main_img img {
    background: url('/french/web/images/loading2.gif') no-repeat 40% center;
}

.loading1 {
    text-align: center;
    margin-top: 30px;
}

.img_content {
    background: #fff;
    z-index: 100;
    position: relative;
    padding-bottom: 30px;
}

.img_content1 {
    z-index: 100;
    position: relative;
}

.img_content1:before {
    position: absolute;
    width: 100%;
    height: 43px;
    top: -34px;
    content: "";
    z-index: 100;
    background: url("/french/web/images/sj_img_bottom_a.png") no-repeat center bottom;
    background-size: contain;
}

.img_content1 span {
    position: absolute;
    background: #fccb00;
    padding: 0px 5px;
    margin: 0px;
    font-size: 14px;
    font-family: "times";
    top: -29px;
    height: 15px;
    line-height: 15px;
    right: 15px;
    text-transform: uppercase;
    z-index: 100;
}

.img_content1 span:before {
    position: absolute;
    border-top: 10px solid rgb(49, 0, 74);
    border-right: 10px solid transparent;
    border-left: 0px solid transparent;
    top: 15px;
    width: 0px;
    right: 0px;
    content: "";
    filter: alpha(opacity=80);
    -moz-opacity: 0.8;
    -khtml-opacity: 0.8;
    opacity: 0.8;
}

.img_content1 span:hover {
    position: absolute;
    background: rgb(49, 0, 74);
    padding: 0px 5px;
    margin: 0px;
    font-size: 13px;
    font-family: "playfair_displayregular";
    top: -29px;
    height: 15px;
    line-height: 15px;
    right: 15px;
    text-transform: uppercase;
    z-index: 100;
    filter: alpha(opacity=80);
    -moz-opacity: 0.8;
    -khtml-opacity: 0.8;
    opacity: 0.8;
    color: #fff;
}

.img_content1 span:hover:before {
    position: absolute;
    border-top: 10px solid #fccb00;
    border-right: 10px solid transparent;
    border-left: 0px solid transparent;
    top: 15px;
    width: 0px;
    right: 0px;
    content: "";
    color: #fff;
}

.img_content1 span:hover, .img_content1 span:hover a:hover, .img_content1 span:hover a {
    color: #fff;
}

/*观察员头像*/
.ul_observers .main_img {
    min-height: 85px;
}

.img_content1 .tx {
    width: 60px;
    position: absolute;
    height: 70px;
    right: 20px;
    top: -13px;
}

.img_content1 .tx img {
    z-index: 102;
    position: relative;
    top: -58px;
    max-width: 100%;
}

.img_content1 .tx .name_t {
    position: absolute;
    top: -80px;
    right: 0px;
    padding: 2px;
    background-color: #fccb00;
    font-size: 12px;
    font-family: "playfair_displayregular";
    display: none;
    text-align: center;
    white-space: nowrap;
    height: 16px;
    line-height: 16px;
}

.img_content strong {
    padding: 0 15px;
    font-family: "playfair_displayitalic";
    color: #000;
    font-size: 18px;
    font-weight: normal;
    display: block;
}

.img_content span {
    font-family: "playfair_displayitalic";
    font-size: 11px;
    padding: 0 15px;
    display: block;
}

.img_content .pl {
    display: none;
    background: url('/french/web/images/pl.png') no-repeat left 3px;
    width: 17px;
    height: 12px;
    padding-left: 20px;
    margin-left: 20px;
	background-size: 17px 12px;
}

.img_content p {
    padding: 0 15px;
    font-family: "playfair_displayregular";
    color: #333;
    font-size: 14px;
    line-height: 150%;
    padding-top: 10px;
    margin-bottom: 10px;
}

.img_content .pblbtn_w {
    width: 80px;
    margin-left: 15px;
    font-size: 14px;
    padding: 5px;
}

.text_btn {
	font-family: "playfair_displayitalic";
	color: #FFF;
	text-align: center;
	background-color: #4A205F;
	border-width: 0px 0px 2px;
	border-style: none none solid;
	/*border-color: #000;*/
	-moz-border-top-colors: none;
	-moz-border-right-colors: none;
	-moz-border-bottom-colors: none;
	-moz-border-left-colors: none;
	border-image: none;
	cursor: pointer;
}

.text_btn a {
	color: #fff;
}


.aff_btn {
    width: 689px;
    height: 30px;
    line-height: 30px;
}

.hcl {
    height: 0px;
}

/* main_img */
.main_img {
    overflow: hidden;
    min-height: 65px
}

.main_img img {
}

.main_img .show {
    background: rgba(253, 208, 0, 0.7);
    width: 100%;
    height: 60%;
    left: 0;
    opacity: 0;
    filter: alpha(opacity=0);
    position: absolute;
    top: 0;
    z-index: 10;
    cursor: pointer;
}

.main_img .show .imgArea {
    font-family: "playfair_displayitalic";
    left: 50%;
    top: 50%;
    width: 100px;
    height: 20px;
    opacity: 0;
    position: absolute;
    margin: -20px 0 0 -50px;
}

.main_img .show .imgArea a {
    color: #000;
    display: block;
    font-size: 1.025em;
    font-family: "playfair_displayitalic";
    text-align: center;
    position: absolute;
}

.main_img .show .imgArea a:hover, .img_content span a:hover {
    text-decoration: none;
}

.main_img:hover .show {
    opacity: 1;
    filter: alpha(opacity=100);
}

.main_img:hover .show .imgArea {
    opacity: 1;
    filter: alpha(opacity=100);
}
