@import url(./layout2024.css);

/* ==========================================================================
   common part
========================================================================== */
.pic {
    overflow: hidden;
    position: relative;
    height: auto;
    cursor: pointer;
}

.bgimg {
    width: 100%;
}

.upimg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transition: all .5s;
}

.pic:hover .upimg {
    transform: scale(1.05);
}

/* 没有放大效果 */
.upimg2 {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

/* 居中对齐 */
.upimg3 {
    position: absolute;
    left: 50%;
    top: 50%;
    max-width: 100%;
    max-height: 100%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transition: all .5s;
}

.pic:hover .upimg3 {
    transform: translate(-50%, -50%) scale(1.05);
    -webkit-transform: translate(-50%, -50%) scale(1.05);
}

.container img {
    max-width: 100%;
}





/* ==========================================================================
   part01
========================================================================== */
.part01_list {
    margin: 1rem 0 0;
    justify-content: space-between;
}

.hp_item {
    font-size: .28rem;
    color: #999999;
    cursor: pointer;
}

.hp_item:hover {
    color: #3C3C3C;
}

.hp_item.hp_on {
    color: #3C3C3C;
    font-weight: bold;
}

.home_pro {
    justify-content: center;
}

.home_pro .pic {
    max-width: 4.77rem;
}

.hp_box {
    position: relative;
}

.iframe_box {
    position: relative;
    width: 10rem;
    height: 5.625rem;
}

.hp_prev {
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    left: 0;
}

.hp_next {
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    right: 0;
}

.hp_prev,
.hp_next {
    display: none;
}

.hp_area {
    position: absolute;
    left: 1.5rem;
    top: .8rem;
    z-index: -1;
}

.hp_type {
    font-size: .4rem;
    font-style: italic;
    color: #D8D8D8;
}

.hp_model {
    font-size: .6rem;
    font-style: italic;
    color: #D8D8D8;
}

.mySwiper2 .swiper-button-next,
.mySwiper2 .swiper-button-prev {
    color: #D8D8D8;
}

.hp_title {
    margin: 0 0 .32rem;
    font-size: .28rem;
    color: #000000;
    letter-spacing: .05rem;
    text-align: center;
}

.hp_btn_box {
    justify-content: center;
    margin-left: -.27rem;
}

.hp_btn {
    width: 1.8rem;
    height: .4rem;
    background: #F2D110;
    border-radius: .04rem;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    font-size: .18rem;
    color: #000000;
    margin-left: .27rem;
    position: relative;
    overflow: hidden;
}

.hp_btn:hover {
    color: #000000;
}

.hp_btn.white {
    border: .02rem solid #000000;
    background: none;
    transition: all .3s;
}

.hp_btn:before {
    content: '';
    display: block;
    background: linear-gradient(to left, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.4) 50%);
    background-size: 210% 100%;
    background-position: right bottom;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    border-radius: .04rem;
    transition: all 1s;
    -webkit-transition: all 1s;
}

.hp_btn:hover:before {
    background-position: left bottom;
}

.hp_btn.white:hover {
    background-color: #F2D110;
}

.part01_content {
    padding-bottom: 1rem;
}

.sudu {
    position: relative;
    letter-spacing: 0;
    margin-right: .2rem;
}

.sudu::after {
    content: "+";
    position: absolute;
    right: -0.2rem;
    top: -0.15rem;
}

.hp_rotate {
    position: absolute;
    right: 0;
    top: 0.8rem;
    background: #F2D110;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    border-radius: 50%;
    box-sizing: border-box;
}

.hp_rotate img {
    max-width: 100%;
}


@media only screen and (max-width:500px) {
    .iframe_box {
        width: calc(100vw - 40px);
        height: calc(calc(100vw - 40px) / calc(16 / 9));
    }

    .hp_item {
        margin-bottom: 10px;
        white-space: nowrap;
    }

    .hp_area {
        left: 0;
        top: 10px;
    }

    .hp_rotate {
        top: 10px;
    }

    .part01_list::-webkit-scrollbar-thumb {
        -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
        border-radius: 3px;
        background-color: rgba(189, 185, 185, .2);
    }

    .part01_list::-webkit-scrollbar {
        height: 3px;
        background-color: #F5F5F5;
    }

    .part01_list {
        flex-wrap: nowrap;
        overflow-x: auto;
    }

    .hp_item:not(:last-of-type) {
        margin-right: 10px;
    }
}











/* ==========================================================================
   part02
========================================================================== */
.part02 {
    background: rgb(248, 248, 248);
    padding: 1rem 0;
}

.home_title {
    font-size: .28rem;
    color: #000000;
    text-align: center;
    letter-spacing: .05rem;
}

.home_desc {
    font-size: .2rem;
    font-weight: 300;
    color: #000000;
    margin: .14rem 0 .72rem;
    text-align: center;
    letter-spacing: .05rem;
}

.part02_list {
    margin-left: -.14rem;
}

.part02_list li {
    margin-left: .14rem;
    width: calc(33.33% - .14rem);
}

.part02_name {
    position: absolute;
    left: .4rem;
    top: .4rem;
    font-size: .32rem;
    color: #FFFFFF;
}

.part02_name2 {
    font-size: .24rem;
}

.part02_btn {
    width: 1.8rem;
    height: .4rem;
    border: .02rem solid #000000;
    border-radius: .04rem;
    box-sizing: border-box;
    transition: all .3s;
    font-size: .18rem;
    font-weight: 300;
    color: #000000;
    letter-spacing: .05rem;
    align-items: center;
    justify-content: center;
    margin: .94rem auto 0;
}

.part02_btn:hover {
    background: #F2D110;
    border-color: #F2D110;
    color: #000000;
}











/* ==========================================================================
   part03
========================================================================== */
.part03 {
    padding: 1rem 0;
}

.part03_box {
    justify-content: space-between;
}

.part03_left {
    width: 41.7%;
    flex-direction: column;
    flex-wrap: nowrap;
    margin-top: -0.14rem;
}

.part03_right {
    width: calc(58.3% - .14rem);
    height: 4.27rem;
    background-color: #F2D110;
    box-sizing: border-box;
    padding: .4rem;
    flex-direction: column;
    flex-wrap: nowrap;
}

.part03_item {
    height: calc(50% - .14rem);
    margin-top: .14rem;
    background-color: #F2D110;
    box-sizing: border-box;
    padding: .4rem;
}

.part03_title {
    font-size: .36rem;
    color: #292929;
    align-items: flex-end;
}

.part03_en {
    font-size: .18rem;
    color: #292929;
    text-transform: uppercase;
    margin-left: .1rem;
}

.part03_info {
    font-size: .18rem;
    color: #292929;
    margin-top: .15rem;
    font-weight: 600;
}

.part03_right {
    justify-content: space-between;
}

.part03_num {
    align-self: flex-end;
}

.part03_num .part03_info {
    text-align: right;
}

@media only screen and (max-width: 768px) {

    .part03_item,
    .part03_right {
        padding: 10px;
    }
}












/* ==========================================================================
   part04
========================================================================== */
.part04 {
    padding: 1rem 0;
    background: #F8F8F8;
}

.part04 .home_desc {
    font-weight: 400;
}

.part04_title {
    font-size: .22rem;
    line-height: .34rem;
    height: .88rem;
    box-sizing: border-box;
    color: #434343;
    padding: .2rem .1rem 0;
    word-break: break-all;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}










/* ==========================================================================
   part05
========================================================================== */
.part05 {
    padding: 1rem 0;
}

.part05_frame {
    justify-content: space-between;
}

.part05_left {
    width: 53.4%;
}

.part05_right {
    width: calc(46.6% - .76rem);
}

.input_item {
    width: 100%;
    outline: none;
    border: none;
    font-size: .18rem;
    line-height: 2;
    color: #333333;
    border-bottom: 1px solid #cccccc;
    padding-left: .05rem;
    margin-bottom: .2rem;
}

.input_item::placeholder,
.input_item:-ms-input-placeholder,
.input_item::-moz-placeholder,
.input_item::-webkit-input-placeholder {
    color: #cccccc;
}

.part05_ljyy {
    border: 0;
    outline: none;
    background: #181818;
    border-radius: 4px;
    width: 1.8rem;
    height: .4rem;
    color: #FFFFFF;
    letter-spacing: .05rem;
    font-size: .18rem;
    margin-top: .6rem;
    cursor: pointer;
}

.part05_area {
    margin-top: .8rem;
}

.part05_msg {
    font-size: .16rem;
    color: #292929;
    line-height: .3rem;
    text-align: center;
}











/* ==========================================================================
   part06
========================================================================== */
.part06 {
    padding: 1rem 0 .8rem;
    background: #F8F8F8;
}

.part06_frame {
    margin-left: -.2rem;
    margin-bottom: .2rem;
}

.part06_box {
    width: calc(50% - .2rem);
    margin-left: .2rem;
}

.part06_frame:last-child {
    margin-left: 0;
}

