﻿
header .banner .banner_box {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

header .container {
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}

header .container .content-box {
    text-align: left;
    line-height: 5.5;
}

header .container .content-box .title {
    font-weight: bold;
    text-align: left !important;
}

header .container .content-box .synopsis {
    width: 60%;
    font-weight: 500;
}

header .container .content-box .synopsis span {
    position: relative;
    /*padding-left: 26px;*/
}

/*header .container .content-box .synopsis span:before {*/
/*    content: "";*/
/*    position: absolute;*/
/*    top: 11px;*/
/*    left: 0;*/
/*    transform: translateY(-50%);*/
/*    width: 20px;*/
/*    height: 20px;*/
/*    background-image: url(/static/front/images/tiktok/gou.png);*/
/*    background-repeat: no-repeat;*/
/*    background-position: center;*/
/*    background-size: cover;*/
/*}*/

header .container .content-box .btn-box {
    margin-top: 0;
}

header .container .content-box .btn-box .btn {
    border-radius: 2px;
    background-color: white;
    opacity: 1;
    font-weight: 500;
    box-shadow: rgb(0 0 0 / 10%) 0px 5px 20px 0px;
}

header .container .content-box .btn-box .btn:hover {
    background-color: #3172F2;
}

section .header-title {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 30px;
}

section .header-title p {
    font-weight: bold;
}

section .header-title p,
section .header-title a {
    display: inline-block;
}

#series {
    background-color: #F7F9FC;
}

#series .content-box {
    margin-top: 30px;
}

#series .content-box.row {
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
}

#series .content-box.row [class*='col-'] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#series .content-box li {
    margin-bottom: 30px;
}

#series .content-box li .item {
    width: 100%;
    max-width: 365px;
    min-height: 100%;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 30px 55px;
    transition: all .3s ease-out;
}

#series .content-box li .item:hover {
    box-shadow: rgba(0, 0, 0, 0.1) 0 0 20px;
}

#series .content-box li .item h5 {
    font-weight: 600;
    margin-top: 20px;
}

#series .content-box li .item img {
    max-width: 60px;
    transition: all .3s ease-out;
}

#series .content-box li .item:hover img {
    transform: scale(1.1);
}

#series .content-box li .item p {
    width: 100%;
    margin: 10px 0;
}

#series .content-box li .item a {

}

#series .content-box li .item a img {
    width: 15px;
}

#compare {
    background-color: white;
}

#compare .content-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

#compare .content-box ul {
}

#compare .content-box ul li {
    font-weight: bold;
    display: flex;
    flex-wrap: wrap;
}

#compare .content-box ul li:last-child {
    margin-bottom: 0;
}

#compare .content-box ul li label {
    background-color: #3172f3;
    padding: 3px 15px;
    margin: 0 10px 60px;
    height: fit-content;
}

#compare .content-box ul li div {
    color: red;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    font-size: 22px;
    position: relative;
}

#compare .content-box ul li div:before {
    content: '';
    position: absolute;
    top: -35px;
    left: 0;
    width: 42px;
    height: 42px;
    background-image: url('/static/front/images/tiktok/zan.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

#compare .content-box ul li div i {
    margin-bottom: 60px;
}

#compare .content-box ul li div span {
    background-color: #f2f2f2;
    padding: 5px 15px;
    margin: 0 10px;
    margin-bottom: 60px;
}

#compare .content-box ul li:last-child label,
#compare .content-box ul li:last-child div i,
#compare .content-box ul li:last-child div span {
    margin-bottom: 25px;
}

#reason {
    background-color: white;
}

#reason .content-box {
    display: flex;
    align-items: center;
    justify-content: center;
}

#reason .content-box ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 960px;
}

#reason .content-box ul li {
    width: 100%;
}

#reason .content-box ul li p {
    margin-bottom: 15px;
}

#reason .content-box ul li .left span {
    text-align: left;
}

#reason .content-box ul li .right {
    text-align: right;
}

#reason .content-box ul li p span {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 15px;
    transition: all .3s ease-out;
    font-weight: bold;
}

#reason .content-box ul li .left span {
    background: linear-gradient(180deg, #FFFFFF 0%, #FEF7F7 100%);
    box-shadow: 0px 2px 16px 0px rgb(230 237 247 / 70%);
    border: 1px solid #FEF7F7;
}

#reason .content-box ul li .right span {
    background: linear-gradient(180deg, #FEFEFF 0%, #F4F6F9 100%);
    box-shadow: 0px 2px 16px 0px rgba(198, 205, 215, 0.7);
    border: 1px solid #d8dfe9;
}

#reason .content-box ul li p span:hover {
    transform: scale(1.1);
}

#reason .content-box ul li .left span {
    border-bottom-left-radius: 0;
}

#reason .content-box ul li .right span {
    border-bottom-right-radius: 0;
}


#gradient {
    background-color: #F7F9FC;
}

#gradient .content-box img {
    width: 100%;
}

#gradient .content-box.row {
    flex-wrap: wrap;
}

#gradient .content-box ul {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
}

#gradient .content-box ul li {
    flex: 0 0 50%;
    max-width: 50%;
    width: 100%;
    margin-bottom: 20px;
    position: relative;
    padding-left: 30px;
    font-weight: bold;
    font-size: 16px;
    transition: all .3s ease-out;
}

#gradient .content-box ul li:hover {
    transform: scale(1.1);
}

#gradient .content-box ul li:before {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background-image: url(/static/front/images/tiktok/amp.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

#process {
    background-color: white;
}

#process .content-box {
    display: flex;
    justify-content: space-between;
    flex-flow: wrap;
    align-items: center;
    margin: 15px 0;
}

#process .content-box .item {
    transition: all .3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

#process .content-box .line {
    display: inline-block;
    width: 168px;
    height: 1px;
    background-color: #222B3B;
    margin-bottom: 10px;
}

#process .content-box .item:hover {
    background-color: #F2FAFF;
    box-shadow: rgba(242, 250, 255, 1) 0 0 20px;
    transform: scale(1.1);
}

#process .content-box .item img {
    width: 51px;
}

#process .content-box .item h5 {
    font-weight: bold;
}

#reason .footer,
#gradient .footer,
#process .footer,
#compare .footer {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 35px;
}

#reason .footer .btn,
#gradient .footer .btn,
#process .footer .btn,
#compare .footer .btn {
    width: 180px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #3172F2;
    border-radius: 2px;
}

/*弹窗*/
.dialog {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1001;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    align-items: center;
    justify-content: center;
}

.dialog .dialog_box {
    position: relative;
    border-radius: 8px;
    display: inline-block;
    background-color: white;
    width: 100%;
    max-width: 414px;
    margin: 0 20px;
    overflow: hidden;
}

.dialog .dialog_box .dialog_body {
    padding: 20px 40px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dialog .dialog_box .dialog_body img {
    width: 50%;
}

.dialog .dialog_box .dialog_body p {
    width: 50%;
    padding-left: 20px;
    cursor: pointer;
    transition: all .3s ease-out;
    line-height: 1.8;
}

.dialog .dialog_box .dialog_body p:hover {
    transform: scale(1.15);
    color: #00A4FF;
}

.dialog .dialog_box .dialog_footer {
    text-align: center;
    padding-bottom: 20px;
    color: #A8A8A8;
    font-size: 14px;
}

@media screen and (max-width: 992px) {

    #series .content-box li .item {
        padding: 20px 25px;
    }

    #gradient .content-box ul li {
        max-width: 100%;
    }

    #process .content-box {
        justify-content: center;
    }

    #process .content-box .line {
        display: none;
    }

    #compare .content-box ul li div span,
    #compare .content-box ul li div i {
        margin-bottom: 25px;
    }

    #compare .content-box ul li:last-child label {
        margin-bottom: 60px;
    }

    .dialog .dialog_box {
        max-width: 320px;
    }

    .dialog .dialog_box .dialog_body {
        flex-direction: column;
    }

    .dialog .dialog_box .dialog_body img {
        width: 100%;
        max-width: 200px;
    }

    .dialog .dialog_box .dialog_body p {
        margin-top: 10px;
        width: 100%;
        text-align: center;
        padding-left: 0;
    }
}

@media screen and (max-width: 768px) {
    header .banner {
        background-position: left center;
    }

    section .container .header-title-center p {
        margin-bottom: 0;
    }

    header .container .content-box .synopsis {
        width: 100%;
    }

    #reason .content-box ul li p span {
        padding: 5px 10px;
    }

    #series .content-box {
        margin-top: 15px;
    }

    #series .content-box li {
        margin-bottom: 15px;
    }

    #series .content-box li .item {
        padding: 15px;
        min-height: 100%;
        width: 100%;
    }

    #series .content-box li .item h5 {
        margin-top: 15px;
    }

    #series .content-box li .item img {
        max-width: 45px;
    }

    #series .content-box li .item p {
        margin: 10px 0;
    }

    #series .content-box li .item a img {
        max-width: 15px;
    }

    #process .content-box {
        justify-content: center;
    }

    #process .content-box .line {
        display: none;
    }

    #compare .content-box ul li div:before {
        width: 35px;
        height: 35px;
    }
}
