.section {
    position: relative;
    overflow: unset !important;
    background: #f6f8fb;
}

.section .wrap {
    max-width: 70%;
    margin: auto;
    padding-top: 30px;
}

.section .r {
    position: absolute;
    right: 0;
    top: -92px;
}

.section .wrap .text {
    margin: 25px auto 0;
    font-size: 13px;
    color: #666;
    line-height:22px;
    text-align: center;
}
/**/
.section > div{
    overflow: hidden;
}
.section .wrap .content{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    grid-gap: 0 20px;
    margin: 40px auto 0;
}
.section .wrap .content .item{
    width: 100%;
    padding: 24px 10px 14px 10px;
    border-radius: 29px;
    position: relative;
    z-index: 1;
    cursor: pointer;
}
.section .wrap .content .item:after{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(255,255,255,0) 100%);
    box-shadow: -1px 9px 51px 0px rgba(52,52,52,0.13);
    opacity: 0.4;
    border-radius: 29px;
    z-index: -1;
    transition: 1s;
}
.section .wrap .content .item .circle{
    width: 100px;
    height: 100px;
    background: #F4FAFC;
    border: 1px solid #E0F0F7;
    box-shadow: 5px 2px 9px 12px rgba(237,246,250,0.6);
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}
.section .wrap .content .item .circle .rote{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    animation: 2s rota infinite linear;
    animation-play-state: paused;
}
.section .wrap .content .item .circle img:not(.rote) {
    transition: 1s;
}

.section .wrap .content .item .y_joke{
    transition: 1s;
}
.section .wrap .content .item:hover:after,.section .wrap .content .item:hover .y_joke{
    transform: translateY(-25px);
}
.section .wrap .content .item:hover .circle .rote{
    animation-play-state: unset;
}
.section .wrap .content .item:hover .circle img:not(.rote) {
    transform: rotateY(180deg);
}
.section .wrap .content .item .headline{
    font-size: 16px;
    font-family: 'Source Han Sans';
    color: #131313;
    text-align: center;
    transition: 1s;
}
.section .wrap .content .item:hover .headline{
    color: #CAA672;
}
.section .wrap .content .item .line{
    height: 1px;
    background: rgba(185, 188, 193,0.18);
    margin: 10px auto 10px;
    position: relative;
    overflow: hidden;
}
.section .wrap .content .item .line:after{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 1px;
    background: #CAA672;
    transform: translateX(-100%);
    transition: 1s;
    transition-timing-function: cubic-bezier(.77, 0, .175, 1);
}
.section .wrap .content .item:hover .line:after{
    transform: translateX(0);
}
.section .wrap .content .item .pick{
    display: flex;
  
    text-align: left;
}
.section .wrap .content .item .pick p{
    font-size: 13px;
    color: #666;
    line-height:22px;
	padding-left:10px;
}
.section .wrap .creative{
    width: 100%;
    margin: 40px auto 0;
    overflow: hidden;
}
.section .wrap .creative .swiper{
    width: 133%;
}
.section .wrap .creative .swiper .images{
    width: 100%;
    height: 180px;
    overflow: hidden;
}
.section .wrap .creative .swiper .images img{
    width: 100%;
    height: 100%;
    transition: 3s;
}
.section .wrap .creative .swiper .swiper-slide{
    cursor: pointer;
}
.section .wrap .creative .swiper .swiper-slide:hover .images img{
    transform: scale(1.1);
}
.section .wrap .creative .swiper .pick{
    margin: 12px 0 0 0;
}
.section .wrap .creative .swiper .pick p{
    font-size: 13px;
    color: #666;
}
.section .wrap .creative .swiper .pick h5{
    font-size: 13px;
    color: #666;
    margin: 10px 0 0 0;
    transition: 1s;
}
.section .wrap .creative .swiper .swiper-slide:hover .pick h5{
    color: #CAA672;
}

.common_bread{
    background: #f6f8fb;
}
.section .wrap .button{
    display: flex;
    margin: 30px 0 20px 15px;
}
.section .wrap .button .circle{
    width: 46px;
    height: 46px;
    border: 1px solid #EDEBEB;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(183, 183, 183, 1);
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 1s;
}
.section .wrap .button .circle:last-child{
    transform: rotate(180deg);
    margin: 0 0 0 15px;
}
.section .wrap .button .circle:hover{
    background: #CAA672;
    box-shadow: 0px 3px 24px 0px rgba(202,166,114,0.2);
    border: 1px solid transparent;
    color: #fff;
}
.section .wrap .creative .line{
    width: 100%;
    height: 1px;
    background: rgba(191, 191, 191, 0.2);
    margin: 0 0 0 15px;
}
.section .wrap .creative .line div{
    width: 0;
    height: 1px;
    background: rgba(202, 166, 114, 1);
    transition: 1s;
    transition-timing-function: cubic-bezier(.77, 0, .175, 1);
}