@charset "utf-8";

/* 
*********************票证通首页样式*********************
*/
body {
    background-color: #fff;
}

/* benner图模块 */
.banner-box {
    width: 100%;
    /* aspect-ratio: 1920 / 792; */
    position: relative;
    overflow: hidden;
}

.banner-box .img-box {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 8;
}

.banner-box .img-box img {
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    position: absolute;
    left: 0;
    top: 0;
}

.banner-box .img-box img.active {
    opacity: 1;
}

.banner-box .points {
    display: flex;
    gap: 30px;
    position: absolute;
    bottom: 100px;
    left: 6.85%;
    z-index: 9;
}

.banner-box .points li {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.2);
    transition: background-color 1s ease;
}

.banner-box .points li.active {
    background-color: rgb(255, 255, 255);
}
/* /benner图模块 */

/* 登陆模块 */
.login-box {
    width: 28.12%;
    min-width: 440px;
    height: 500px;
    padding: 16px 40px;
    border-radius: 8px;
    background-color: rgb(255, 255, 255);
    position: absolute;
    right: 80px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.login-box .login-type {
    display: flex;
    gap: 30px;
    height: 50px;
    margin-bottom: 46px;
    padding-top: 24px;
}

.login-box .login-type li a {
    font-size: 22px;
    color: rgb(153, 153, 153);
}

.login-box .login-type li.active a {
    font-size: 26px;
    color: rgb(68, 68, 68);
    font-weight: bold;
    position: relative;
}

.login-box .login-type li.active a::after {
    content: '';
    display: inline-block;
    width: 42px;
    height: 4px;
    border-radius: 2px;
    background-color: rgb(0, 135, 255);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.login-box .login-type li a:hover {
    color: rgb(68, 68, 68);
}

/* .login-box .login-type li:last-child {
    width: 72px;
    height: 72px;
    position: absolute;
    right: 0;
    top: 0;
}

.login-box .login-type li:last-child a.icon-qrcode {
    display: inline-block;
    width: 72px;
    height: 72px;
    background: url(https://ahspy.cn/pzt/img/qr-code-half.png);
    clip-path: polygon(0 0, 100% 0, 100% 100%);
    position: absolute;
    right: 0;
    top: 0;
}

.login-box .login-type li:last-child p {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 97px;
    height: 32px;
    font-size: 16px;
    border-radius: 4px;
    color: rgb(107, 173, 231);
    background-color: rgb(232, 241, 249);
    position: absolute;
    right: 55px;
    top: 50%;
    transform: translateY(-50%);
}

.login-box .login-type li:last-child p::after {
    content: '';
    display: inline-block;
    width: 7px;
    height: 10px;
    background-color: rgb(232, 241, 249);
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    position: absolute;
    top: 50%;
    right: -7px;
    transform: translateY(-50%);
} */

.login-box .form-group {
    width: 100%;
    height: 54px;
    margin: 32px 0;
    overflow: hidden;
    position: relative;
}

.login-box .form-group input[type="text"] {
    width: 100%;
    height: 100%;
    padding-left: 55px;
    outline: none;
    font-size: 20px;
    color: #333;
    border-radius: 8px;
    border: 1px solid rgb(110, 187, 255);
    background-color: rgb(243, 249, 255);
    transition: border-color 0.3s ease;
}

.login-box .form-group input[type="text"]:focus {
    border-color: rgb(0, 100, 187);
}
.login-box .form-group input[type="password"] {
    width: 100%;
    height: 100%;
    padding-left: 55px;
    outline: none;
    font-size: 20px;
    color: #333;
    border-radius: 8px;
    border: 1px solid rgb(110, 187, 255);
    background-color: rgb(243, 249, 255);
    transition: border-color 0.3s ease;
}

.login-box .form-group input[type="password"]:focus {
    border-color: rgb(0, 100, 187);
}
.login-box .form-group input::placeholder {
    color: rgb(173, 199, 226);
}

.login-box .form-group label {
    display: inline-block;
    width: 55px;
    height: 55px;
    position: absolute;
    left: 0;
    top: 0;
    cursor: text;
}

.login-box .form-group label.icon-phone {
    background: url(https://ahspy.cn/pzt/img/icon-phone.png) no-repeat center center;
}

.login-box .form-group label.icon-dun {
    background: url(https://ahspy.cn/pzt/img/icon-dun.png) no-repeat center center;
}

.login-box .form-group label.icon-username {
    background: url(https://ahspy.cn/pzt/img/icon-username.png) no-repeat center center;
}

.login-box .form-group label.icon-password {
    background: url(https://ahspy.cn/pzt/img/icon-password.png) no-repeat center center;
}

.login-box input[type="submit"] {
    width: 100%;
    margin-top: 64px;
}

.login-box .form-group #send-verification-code {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0 20px;
    font-size: 18px;
    color: rgb(0, 91, 172);
    border: none;
    background: transparent;
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
}

.login-box .form-group #send-verification-code:disabled {
    cursor: no-drop;
    color: rgb(255, 94, 94);
}

.login-box .toRegister {
    display: flex;
    justify-content: center;
    margin: 32px 0 46px;
    font-size: 18px;
    color: rgb(0, 91, 172);
    text-decoration: underline;
}

.login-box .agreement {
    display: flex;
    align-items: center;
}

.login-box .agreement,
.login-box .agreement a {
    font-size: 16px;
    color: rgb(153, 153, 153);
}

.login-box input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    border: 1px solid rgb(203, 203, 203);
    border-radius: 4px;
    background-color: rgb(237, 237, 237);
    box-shadow: inset 0px 2px 8px 0px rgba(4, 0, 0, 0.2);
}

.login-box .remember-forget-password {
    height: 16px;
    align-items: center;
    justify-content: space-between;
    margin: -20px 0 -28px;
}

.login-box .remember-forget-password .remember-password {
    display: flex;
    align-items: center;
    color: rgb(170, 170, 170);
    float: left;
}

.login-box .remember-forget-password .remember-password label {
    cursor: pointer;
}

.login-box .remember-forget-password a {
    color: rgb(255, 94, 94);
    float: right;
}

.login-box .login-type-qrcode {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 248px;
    background-color: #fff;
}

.login-box .login-type-qrcode img {
    width: 220px;
    height: 220px;
    padding: 12px;
    border: 1px solid rgb(204, 204, 204);
    border-radius: 10px;
}

.login-box .login-type-qrcode,
.login-box .login-type-phone {
    display: none;
}

@media (max-width: 1700px) {
    .login-box {
        height: 400px;
        padding: 0 40px;
        right: 20px;
    }

    .login-box .login-type {
        margin-bottom: 30px;
    }

    .login-box .form-group {
        margin: 28px 0;
    }

    .login-box input[type="submit"] {
        margin-top: 40px;
    }

    .login-box .remember-forget-password {
        margin: -20px 0 -24px;
    }

    .login-box .toRegister {
        margin: 16px 0 28px;
    }

    .login-box .login-type-qrcode {
        height: 220px;
    }
}
/* /登陆模块 */

/* 免费试用模块 */
.advertising-board {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 90px;
    padding: 0 4.21%;
    margin-top: 0;
    background-color: rgb(245, 154, 35);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 9;
}

@media (max-width: 1600px) {
    .advertising-board {
        height: 70px;
    }
}

.advertising-board .left {
    display: flex;
    align-items: center;
    font-size: 32px;
    color: rgb(255, 255, 255);
    font-weight: bold;
}

.advertising-board .left::before {
    content: '';
    display: inline-block;
    width: 50px;
    height: 48px;
    margin-right: 20px;
    background: url(https://ahspy.cn/pzt/img/pc2.png);
}

.advertising-board .center {
    font-size: 24px;
    color: rgb(255, 255, 255);
    font-weight: bold;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.advertising-board .right a.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 160px;
    height: 48px;
    background-color: rgb(255, 255, 255);
    font-size: 24px;
    color: rgb(51, 51, 51);
    font-weight: bold;
    border-radius: 6px;
}

.advertising-board .right a.btn:hover {
    background-color: rgb(224, 224, 224);
}
  
.advertising-board .right a.btn:active {
    background-color: rgb(192, 192, 192);
}


.advertising-board .right .advertising-board-close {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    background: url(https://ahspy.cn/pzt/img/icon-close.png);
    position: absolute;
    right: 1.4%;
    top: 50%;
    transform: translateY(-50%);
}
/* /免费试用模块 */

/* 行业解决方案 */
.industry-solution-box {
    width: 100%;
    padding: 68px 4.21% 0;
}

.box-title {
    display: flex;
    flex-direction: column;
}

.box-title .big {
    font-size: 36px;
    color: rgb(51, 51, 51);
    font-weight: bold;
    text-align: center;
}

.box-title .small {
    margin: 30px 0 50px;
    text-align: center;
    font-size: 22px;
    color: rgb(153, 153, 153);
}

.industry-solution-box .content {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.industry-solution-box .content .item {
    width: calc((100% - 40px) / 5);
    /*min-height: 300px;
     aspect-ratio: 1 / 1; */
    padding: 36px 30px 40px;
    position: relative;
}

.industry-solution-box .content .item.bg-lsqy {
    background: url(https://ahspy.cn/pzt/img/bg-lsqy.jpeg) no-repeat center center / 100% 100%;
}

.industry-solution-box .content .item.bg-pfqy {
    background: url(https://ahspy.cn/pzt/img/bg-pfqy.jpeg) no-repeat center center / 100% 100%;
}

.industry-solution-box .content .item.bg-cyqy {
    background: url(https://ahspy.cn/pzt/img/bg-cyqy.jpeg) no-repeat center center / 100% 100%;
}

.industry-solution-box .content .item.bg-cyst {
    background: url(https://ahspy.cn/pzt/img/bg-cyst.jpeg) no-repeat center center / 100% 100%;
}

.industry-solution-box .content .item.bg-scqy {
    background: url(https://ahspy.cn/pzt/img/bg-scqy.jpeg) no-repeat center center / 100% 100%;
}

.industry-solution-box .content .item.bg-npsc {
    background: url(https://ahspy.cn/pzt/img/bg-npsc.jpeg) no-repeat center center / 100% 100%;
}

.industry-solution-box .content .item.bg-nmsc {
    background: url(https://ahspy.cn/pzt/img/bg-nmsc.jpeg) no-repeat center center / 100% 100%;
}

.industry-solution-box .content .item.bg-zzqy {
    background: url(https://ahspy.cn/pzt/img/bg-zzqy.jpeg) no-repeat center center / 100% 100%;
}

.industry-solution-box .content .item.bg-yzqy {
    background: url(https://ahspy.cn/pzt/img/bg-yzqy.jpeg) no-repeat center center / 100% 100%;
}

.industry-solution-box .content .item.bg-tzc {
    background: url(https://ahspy.cn/pzt/img/bg-tzc.jpeg) no-repeat center center / 100% 100%;
}

.industry-solution-box .content .item::before {
    content: '';
    display: inline-block;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    position: absolute;
    top: 0;
    left: 0;
    transition: background-color 0.3s ease;
}

.industry-solution-box .content .item:hover:before {
    background-color: rgba(0, 0, 0, 0.2);
}

.industry-solution-box .content .item .title {
    display: flex;
    align-items: center;
    margin-left: -10px;
    font-size: 16px;
    color: rgb(255, 255, 255);
    font-weight: bold;
    position: relative;
    z-index: 10;
}

.industry-solution-box .content .item .title::before,.title1::before {
    content: '';
    display: inline-block;
    margin-right: 8px;
}

.industry-solution-box .content .item .title.icon-lsqy::before,.title1.icon-lsqy::before {
    width: 19px;
    height: 18px;
    background: url(https://ahspy.cn/pzt/img/icon-lsqy.png);
    background-size: contain;
}

.industry-solution-box .content .item .title.icon-pfqy::before,.title1.icon-pfqy::before {
	width: 19px;
    height: 18px;
    background: url(https://ahspy.cn/pzt/img/icon-pfqy.png);
    background-size: contain;
}

.industry-solution-box .content .item .title.icon-cyqy::before,.title1.icon-cyqy::before {
    width: 20px;
    height: 18px;
    background: url(https://ahspy.cn/pzt/img/icon-cyqy.png);
    background-size: contain;
}

.industry-solution-box .content .item .title.icon-cyst::before,.title1.icon-cyst::before {
    width: 20px;
    height: 18px;
    background: url(https://ahspy.cn/pzt/img/icon-cyst.png);
    background-size: contain;
}

.industry-solution-box .content .item .title.icon-scqy::before,.title1.icon-scqy::before {
	width: 19px;
    height: 18px;
    background: url(https://ahspy.cn/pzt/img/icon-scqy.png);
    background-size: contain;
}

.industry-solution-box .content .item .title.icon-npsc::before,.title1.icon-npsc::before {
	width: 19px;
    height: 18px;
    background: url(https://ahspy.cn/pzt/img/icon-npsc.png);
    background-size: contain;
}

.industry-solution-box .content .item .title.icon-nmsc::before,.title1.icon-nmsc::before {
	width: 20px;
    height: 18px;
    background: url(https://ahspy.cn/pzt/img/icon-nmsc.png);
    background-size: contain;
}

.industry-solution-box .content .item .title.icon-zzqy::before,.title1.icon-zzqy::before {
	width: 19px;
    height: 18px;
    background: url(https://ahspy.cn/pzt/img/icon-zzqy.png);
    background-size: contain;
}

.industry-solution-box .content .item .title.icon-yzqy::before,.title1.icon-yzqy::before {
	width: 20px;
    height: 18px;
    background: url(https://ahspy.cn/pzt/img/icon-yzqy.png);
    background-size: contain;
}

.industry-solution-box .content .item .title.icon-tzc::before,.title1.icon-tzc::before {
	width: 20px;
    height: 18px;
    background: url(https://ahspy.cn/pzt/img/icon-tzc.png);
    background-size: contain;
}

.industry-solution-box .content .item .description {
    margin-top: 16px;
    font-size: 16px;
    color: rgb(238, 238, 238);
    line-height: 24PX;
    position: relative;
    z-index: 10;
}

.industry-solution-box .content .item a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 110px;
    height: 34px;
    border-radius: 4px;
    background-color: rgb(0, 91, 172);
    color: #fff;
    position: absolute;
    bottom: 40px;
    z-index: 10;
}

.industry-solution-box .content .item a:hover {
    background-color: rgb(0, 112, 211);
}

.industry-solution-box .content .item a:active {
    background-color: rgb(0, 71, 133);
}

@media (max-width: 1700px) {
    .industry-solution-box .content .item a {
        bottom: 12px;
    }
}
/* /行业解决方案 */

/* 功能介绍 */
.function-introduction-box {
    width: 100%;
    padding: 68px 0;
}

.function-introduction-box .content > ul {
    display: flex;
    width: 100%;
    height: 80px;
    padding: 0 4.21%;
    background-color: rgb(229, 229, 229);
}

.function-introduction-box .content > ul li {
    width: 0;
    flex-grow: 1;
    height: 100%;
}

@media (max-width: 1600px) {
    .function-introduction-box .content > ul li:last-child {
        min-width: 150px;
        flex-grow: unset;
    }
}

.function-introduction-box .content > ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 20px;
    color: rgb(51, 51, 51);
    
}

.function-introduction-box .content > ul li.active a {
    font-weight: bold;
    background-color: rgb(0, 91, 172);
    color: #fff;
}

.function-introduction-box .content .item {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    /* aspect-ratio: 1920 / 480; */
    padding: 0 4.21%;
    background: url(https://ahspy.cn/pzt/img/bg-gnjs.jpg) no-repeat center center / 100% 100%;
    position: relative;
}

.function-introduction-box .content .item.active {
    display: flex;
}

.function-introduction-box .content .item::after {
    content: '';
    display: inline-block;
    width: 48.95%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    /* clip-path: polygon(0 100%, 100% 100%, 100% 0, 27.72% 0); */
    pointer-events: none;
}

.function-introduction-box .content .item.bg-spgl::after {
    background: url(https://ahspy.cn/pzt/img/index/bg-spgl.png) no-repeat center center / 100% 100%;
}

.function-introduction-box .content .item.bg-jhgl::after {
    background: url(https://ahspy.cn/pzt/img/index/bg-jhgl.png) no-repeat center center / 100% 100%;
}

.function-introduction-box .content .item.bg-xhgl::after {
    background: url(https://ahspy.cn/pzt/img/index/bg-xhgl.png) no-repeat center center / 100% 100%;
}

.function-introduction-box .content .item.bg-khgl::after {
    background: url(https://ahspy.cn/pzt/img/index/bg-khgl.png) no-repeat center center / 100% 100%;
}

.function-introduction-box .content .item.bg-cggl::after {
    background: url(https://ahspy.cn/pzt/img/index/bg-cggl.png) no-repeat center center / 100% 100%;
}

.function-introduction-box .content .item.bg-kcgl::after {
    background: url(https://ahspy.cn/pzt/img/index/bg-kcgl.png) no-repeat center center / 100% 100%;
}

.function-introduction-box .content .item.bg-cygl::after {
    background: url(https://ahspy.cn/pzt/img/index/bg-cygl.png) no-repeat center center / 100% 100%;
}

.function-introduction-box .content .item.bg-scgl::after {
    background: url(https://ahspy.cn/pzt/img/index/bg-scgl.png) no-repeat center center / 100% 100%;
}

.function-introduction-box .content .item.bg-tzgl::after {
    background: url(https://ahspy.cn/pzt/img/index/bg-tzgl.png) no-repeat center center / 100% 100%;
}

.function-introduction-box .content .item.bg-sarzygk::after {
    background: url(https://ahspy.cn/pzt/img/index/bg-sarzygk.png) no-repeat center center / 100% 100%;
}

.function-introduction-box .content .item .description {
    width: 50%;
    font-size: 22px;
    color: rgb(51, 51, 51);
    line-height: 44px;
    position: relative;
    z-index: 10;
}

.function-introduction-box .content .item .functions {
    display: flex;
    flex-wrap: wrap;
    width: 500px;
    gap: 26px 36px;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.6);
    font-size: 20px;
    color: rgb(85, 85, 85);
    position: relative;
    z-index: 10;
}

@media (max-width: 1600px) {
    .function-introduction-box .content .item .description {
        line-height: 32px;
    }

    .function-introduction-box .content .item .functions {
        gap: 16px 36px;
        padding: 24px;
    }
}
/* /功能介绍 */
  
/* 食安小课堂 */
.questions-box .content {
    margin-top: 30px;
    padding: 32px 4.21%;
    background-color: rgb(232, 240, 247);
    position: relative;
}
  
.questions-box .content .btn {
    display: inline-block;
    width: 19px;
    height: 32px;
    background: url(https://ahspy.cn/pzt/img/icon-jiantou.png);
    position: absolute;
    left: 5.58%;
    top: 50%;
    z-index: 10;
    transform: translateY(-50%);
}
  
.questions-box .content .btn.next {
    transform: translateY(-50%) rotate(180deg);
    left: auto;
    right: 5.58%;
}

.questions-box .content .container {
    width: 100%;
    overflow: hidden;
}

.questions-box .content .container > div {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.questions-box .content .container .item {
    display: none;
    align-items: center;
    flex-direction: column;
    width: 100%;
    padding: 0 2.4%
}

.questions-box .content .container .item:first-child {
    display: flex;
}

.questions-box .content .container .item .question {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 54px;
    padding: 0 40px;
    margin-bottom: 24px;
    border-radius: 4px;
    background-color: rgb(210, 226, 241);
    font-size: 26px;
    color: rgb(51, 51, 51);
}
  
.questions-box .content .container .item .answer p:nth-child(1) {
    display: flex;
    align-items: center;
    font-size: 22px;
    color: rgb(51, 51, 51);
    font-weight: bold;
}

.questions-box .content .container .item .answer p:nth-child(1)::before {
    content: '';
    display: inline-block;
    width: 43px;
    height: 39px;
    margin-right: 4px;
    margin-top: -4px;
    background: url(https://ahspy.cn/pzt/img/icon-robot.png);
}

.questions-box .content .container .item .answer p:nth-child(2) {
    margin-top: 12px;
    font-size: 22px;
    color: #444;
    line-height: 44px;
}
/* /食安小课堂 */

/* 合作伙伴 */
.partner-box {
    margin-top: 68px;
    margin-bottom: 120px;
    padding: 0 4.21%;
}

.partner-box .content {
    display: flex;
    align-items: center;
    gap: 90px;
}

.partner-box .content ul.left {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    width: 36.93%;
}

.partner-box .content ul.left li {
    width: calc((100% - 96px) / 7);
    /* aspect-ratio: 1 / 1; */
    border-radius: 4px;
    overflow: hidden;
}

.partner-box .content ul.left li img {
    width: 100%;
    height: 100%;
}

.partner-box .content .right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 0;
    flex-grow: 1;
    gap: 24px;
}

.partner-box .content .right p {
    width: 100%;
    padding: 20px 95px;
    border-radius: 4px;
    background-image: linear-gradient( 0deg, rgb(255,255,255) 0%, rgb(243,243,243) 100%);
    box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.03);
    font-size: 20px;
    color: rgb(51, 51, 51);
    line-height: 36px;
    position: relative;
}

.partner-box .content .right p::before,
.partner-box .content .right p::after {
    content: '';
    display: inline-block;
    width: 44px;
    height: 44px;
    background: url(https://ahspy.cn/pzt/img/icon-yinhao.png);
    position: absolute;
    left: 30px;
    top: 20px;
}

.partner-box .content .right p::after {
    left: auto;
    right: 30px;
    transform: rotate(180deg);
}
/* /合作伙伴 */
  


  
  

  
  
 
  
  











