html, body {
    color: #333;
    background: #f5f5f5;
}

.header-nav {
    width: 100%;
    height: 60px;
    background: #fff;
    display: flex;
    justify-content: space-between;
    font-size: 16px;
}

.header-nav .nav-box .logo {
    padding-top: 14px;
    margin: 0 70px 0 30px;
}

.header-nav .nav {
    padding-top: 22px;
}

.header-nav .nav li:hover dl {
    display: block;
}

.header-nav .nav li dl {
    display: none;
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
    padding: 10px;
    border: 1px solid #e6e7e8;
    background: rgba(255, 255, 255, .8);
    z-index: 10;
}

.header-nav .nav li dd:last-child a {
    border-bottom: none;
}

.header-nav .nav li dl a:hover {
    color: #1276f2;
}

.header-nav .nav li dl a {
    display: block;
    line-height: 44px;
    border-bottom: 1px solid #e6e7e8;
    text-align: center;
    min-width: 90px;
}

.header-nav .nav li {
    position: relative;
    margin-right: 50px;
}

.header-nav .other-nav a {
    position: relative;
}

.header-nav .other-nav a:after,
.header-nav .nav li:after {
    display: none;
    content: "";
    width: 34px;
    height: 2px;
    background: #1276f2;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}

.header-nav .other-nav a.active:after,
.header-nav .other-nav a:hover:after,
.header-nav .nav li.active:after,
.header-nav .nav li:hover:after {
    display: block;
}

.header-nav .nav-box {
    display: flex;
}

.header-nav .nav-box ul {
    display: flex;
}

.header-nav a {
    color: #333;
}

.header-nav .other-nav {
    display: flex;
}

.header-nav .other-nav > a {
    margin-right: 40px;
    line-height: 60px;
}

.header-nav .login a {
    display: inline-block;
    line-height: 60px;
}

.header-nav .login .login-btn {
    width: 100px;
    color: #fff;
    background: #0071bc;
    margin-left: 30px;
    text-align: center;
}

.header-nav .login .login-btn:after {
    background-color: #fff;
}

/* 首页轮播图开始 */
.index-section-banner {
    width: 100%;
    height: 600px;
    position: relative;
}

.index-section-banner .swiper-banner-img {
    width: 100%;
    height: 100%;
    min-height: 398px;
    object-fit: unset;

}

#index-swiper {
    width: 100%;
    min-width: 1260px;
}

#index-swiper .swiper-wrapper {
    width: 100%;
}

#index-swiper .content-text {
    position: absolute;
    left: 180px;
    top: 240px;
}

#index-swiper .swiper-pagination {
    display: flex;
    width: 1200px;
    margin: 0 auto;
    position: static;
    transform: translate(0px, 0px);
    justify-content: center;
}

#index-swiper .swiper-pagination span {
    float: left;
    box-sizing: content-box;
    text-align: center;
    width: 46px;
    height: 5px;
    margin-right: 20px;
    cursor: pointer;
    background-clip: content-box;
    position: relative;
}

#index-swiper .swiper-pagination-bullet {
    background-color: #e0e6ea;
    border-radius: 5px;
    opacity: 1;
}

#index-swiper .swiper-pagination-bullet-active {
    background-color: #1176f1;
    opacity: 1;
}

.swiper-pagination-wrap {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 20px;
    z-index: 1;
}

.swiper-container {
    height: 600px;
}

.section-banner-nav-wrap-item {
    width: 300px;
    height: 80px;
    border-radius: 0px 0px 0px 0px;
    display: block;
    text-align: center;
    overflow: hidden;
    cursor: pointer;
}

.section-banner-nav-wrap-item:hover {
    background-color: #352C48;
    border-radius: 20px 20px 0 0;
}

.swiper-banner-img-a {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    opacity: 0;
}

.swiper-content {
    width: 100%;
    position: absolute;
    top: 60px;
    left: 0;
}

.swiper-content .swiper-content-layer {
    width: 1200px;
    margin: 75px auto 0;
}

.swiper-content .swiper-content-tips {
    width: 520px;
    position: relative;
}

.swiper-content .swiper-content-tips-title {
    font-size: 40px;
    color: #FFF;
}

.swiper-content .swiper-content-tips-span {
    color: #FF461B;
}

.swiper-content .swiper-content-tips-text {
    margin-top: 15px;
    width: 600px;
    line-height: 30px;
    font-size: 16px;
    color: #FFF;
}

.swiper-content-layer .swiper-content-btn-box {
    margin-top: 50px;
    position: relative;
    z-index: 2;
    display: flex;
}

.swiper-content-btn-box .swiper-content-btn {
    height: 40px;
    line-height: 34px;
    display: inline-block;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    border-radius: 20px;
    cursor: pointer;
    padding: 0 30px;
    border: 2px solid #E73F3B;
    box-sizing: border-box;
}

.swiper-content-btn-box .purchase-btn {
    background-color: #E73F3B;
    color: #FFF;
    margin-right: 20px;
}

.swiper-content-btn-box .consulting-btn {
    color: #E73F3B;
}

.swiper-content-exhibition {
    width: 160px;
    position: relative;
    z-index: 3;
    margin-top: 21px;
    margin-left: -12px;
}

.swiper-content-exhibition img {
    width: 100%;
    height: 100%;
    display: inline-block;
}

.business-nav {
    width: 100%;
    background: #fff;
    padding: 26px 0;
}

.business-nav-ul {
    width: 1200px;
    margin: 0 auto;
    display: flex;
}

.business-nav-ul li {
    flex: 1;
}

.business-nav-ul li a {
    display: flex;
    padding-left: 50px;
    border-left: 1px solid #e6e7e8;
    padding-top: 40px;
    height: 100px;
}

.business-nav-ul li:first-child a {
    border-left-color: transparent;
}

.business-nav-ul li h6 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
}

.business-nav-ul li img {
    margin-right: 24px;
}

.business-nav-ul li p {
    color: #999;
    font-weight: 400;
    font-size: 14px;
    margin-top: 10px;
}

.index-notice {
    width: 100%;
    background: #fff;
    margin-top: 4px;
}

.index-notice dl {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    line-height: 40px;
}

.index-notice dl a {
    color: #333;
}

.index-notice dl a:hover {
    color: #1276f2;
}

.index-notice dl dt {
    margin-right: 20px;
    color: #263ead;
    font-size: 18px;
    font-weight: 700;
}

.index-notice dl .more {
    flex: 1;
    text-align: right;
}

.index-notice dl .more a {
    color: #263ead;
    text-decoration: underline;
}

.index-notice dl span {
    color: #999;
    margin: 0 60px 0 10px;
}

.index-section-title {
    line-height: 90px;
    font-size: 24px;
    font-weight: 700;
    margin-top: 16px;
    text-align: center;
}

.domain-search-container {
    width: 1030px;
    margin: 0 auto;
}

.domain-search-container .input-box {
    display: flex;
    height: 58px;
    background: #fff;
}

.domain-search-container .input-box div {
    position: relative;
    width: 110px;
    font-size: 16px;
    line-height: 30px;
    padding: 14px;
    text-align: center;
    background: #fff;
}

.domain-search-container .input-box div:after {
    content: "";
    width: 2px;
    height: 30px;
    position: absolute;
    left: 0;
    top: 14px;
    background: #e6e7e8;
}

.domain-search-container .input-box div i {
    display: inline-flex;
    transform: rotate(180deg);
}

.domain-search-container .input-box div ul {
    display: none;
    position: absolute;
    top: 58px;
    left: -1px;
    width: 100%;
    background: #fff;
    border: 1px solid #e6e7e8;
    padding: 5px 0;
    z-index: 1;
}

.domain-search-container .input-box div li {
    cursor: pointer;
}

.domain-search-container .input-box div li:hover {
    color: #1276f2;
}

.domain-search-container .input-box [type="text"] {
    flex: 1;
    padding-left: 20px;
    font-size: 16px;
}

.domain-search-container .input-box [type="submit"] {
    width: 190px;
    height: 58px;
    background: #1276f2;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
}

.domain-search-container .price {
    margin-top: 16px;
    display: flex;
    justify-content: space-between;
}

.domain-search-container .price a {
    color: #333;
}

.host-service {
    display: flex;
    background: #fff;
    width: 1200px;
    border: 1px solid #e6e7e8;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 20px 0;
    color: #666;
    border-radius: 5px;
}

.host-service ul {
    border-right: 1px solid #e6e7e8;
    padding-right: 20px;
}

.host-service ul li {
    display: flex;
    line-height: 76px;
    border-bottom: 1px solid #e6e7e8;
    padding-left: 30px;
    cursor: pointer;
}

.host-service ul li.active .iconfont,
.host-service ul li.active {
    color: #1276f2;
}

.host-service ul li:last-child {
    border-bottom: none;
}

.host-service ul li span {
    display: inline-block;
    width: 92px;
    text-align: center;
    font-size: 18px;
}

.host-service .inner {
    flex: 1;
    padding: 0 30px;
}

.host-service .inner div {
    position: relative;
    display: none;
    height: 100%;
}

.host-service .inner div .more-btn {
    position: absolute;
    right: 0;
    bottom: 0;
    text-decoration: underline;
}

.host-service .inner dl {
    position: relative;
    padding-left: 40px;
    flex: 1;
    border-left: 1px solid #e6e7e8;
}

.host-service .inner dl dd {
    margin-bottom: 20px;
}

.host-service .inner div dl:first-child {
    border-left-color: transparent;
}

.host-service .inner dt {
    padding: 30px 0 50px;
    font-size: 18px;
    font-weight: 700;
}

.host-service .inner div dl:first-child dt {
    color: #00b115;
}

.host-service .inner div dl:nth-child(2) dt {
    color: #f3af0a;
}

.host-service .inner div dl:nth-child(3) dt {
    color: #b000dc;
}

.host-service .inner dl dd:last-child {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 30px;
    text-align: center;
}

.host-service .inner dl dd:last-child a {
    display: inline-block;
    width: 84px;
    height: 28px;
    line-height: 28px;
    text-align: center;
    background: #fff;
    border: 1px solid #1276f2;
    color: #1276f2;
    border-radius: 3px;
}

.host-service .inner dl dd:last-child .buy-btn {
    background: #1276f2;
    color: #fff;
    margin-right: 10px;
}

.web-dev {
    display: flex;
    gap: 70px;
    width: 1200px;
    margin: 0 auto;
    border: 1px solid #e6e7e8;
    border-radius: 5px;
    background: #fff url("/assets/img/icon10.png") no-repeat right center;
}

.web-dev .img {
    padding: 30px 30px 30px 40px;
    margin: 40px 0;
    border-right: 1px solid #e6e7e8;
}

.web-dev .text {
    flex: 1;
    padding-top: 45px;
    line-height: 30px;
    color: #666;
    background: linear-gradient(to right, rgba(255, 255, 255, 1), rgba(255, 255, 255, 1) 65%, rgba(255, 255, 255, .9) 70%, rgba(255, 255, 255, 0) 80%);
}

.web-dev .text p:first-child {
    margin-bottom: 10px;
}

.index-ryzz ul {
    display: flex;
    padding: 40px 0;
    justify-content: center;
    gap: 3%;
    align-items: center;
}

/*登录注册*/
.reg-box {
    padding: 60px 0;
    background: linear-gradient(to right, #c4c7f5, #c8dcf8);
}

.reg-box .inner {
    width: 1000px;
    margin: 0 auto;
}

.reg-box .title {
    font-size: 24px;
    color: #fff;
    font-weight: 700;
    text-align: center;
    background: #3b5799;
    padding: 60px 0 26px;
    margin-bottom: 3px;
    border-radius: 5px;
}

.reg-box .title a {
    display: inline-block;
    width: 190px;
    color: #b5b5b5;
}

.reg-box .title a.active {
    color: #fff;
}

.reg-box li {
    margin-bottom: 10px;
}

.reg-box li [type="text"] {
    width: 374px;
    height: 44px;
    border: 1px solid #1276f2;
    font-size: 16px;
    padding-left: 14px;
}

.reg-box ul {
    width: 390px;
    margin: 0 auto;
}

.reg-box .bg {
    padding: 40px 0;
    background: #3b5799;
    border-radius: 5px;
}

.reg-box ul [type="submit"] {
    width: 390px;
    height: 46px;
    background: #1276f2;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
}

.reg-box ul .other {
    display: flex;
    margin: 20px 0;
    color: #fff;
    justify-content: space-between;
    align-items: center;
}

.reg-box ul .other a {
    color: #1276f2;
}

.reg-box .xy {
    text-align: center;
    color: #999;
}

.reg-box .xy p {
    margin: 20px 0 26px;
}

.reg-box .xy a {
    color: #1276f2;
}

/*底部*/
.footer {
    width: 100%;
    background: #47577a;
    padding-bottom: 30px;
}

.footer .info {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    padding: 50px 0;
    color: #fff;
    font-size: 16px;
    line-height: 40px;
}

.footer .info div p:first-child {
    margin-bottom: 10px;
}

.footer .info a {
    color: #1276f2;
    margin-right: 40px;
}

.footer .info div:first-child {
    display: inline-flex;
    justify-content: center;
    width: 400px;
    align-items: center;
}

.footer > p span {
    color: #39b54a;
}

.footer > p a {
    color: #1276f2;
}

.footer > p {
    text-align: center;
    color: #b5b5b5;
}

.footer > p:last-child {
    border-top: 1px solid #8a8e99;
    line-height: 30px;
    margin-top: 10px;
}

.footer > p:last-child a {
    color: #b5b5b5;
}

/* 回到顶部开始 */
.edu_scrollbar_btn {
    width: 55px;
    height: 55px;
    border: 1px solid #E92D0E;
    margin-top: 40px;
    background-color: #fff;
    text-align: center;
    color: #E92D0E;
    position: relative;
    cursor: pointer;
    border-radius: 50%;
}

.edu_right_scrollbar .service .edu_scrollbar_btn img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.edu_right_scrollbar .service dl:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.edu_right_scrollbar .search div {
    width: 170px;
    height: 30px;
    border: 1px solid #e8e8e8;
    display: flex;
    margin-bottom: 10px;
}

.edu_right_scrollbar .search a {
    color: #666;
}

.edu_right_scrollbar .search [type="text"] {
    width: 120px;
}

.edu_right_scrollbar .search [type="submit"] {
    width: 50px;
}

.edu_right_scrollbar {
    position: fixed;
    right: 12px;
    bottom: 300px;
    z-index: 99999;
    height: 134px;
}

.edu_scrollbar_btn3 {
    display: none;
}

/* 回到顶部开始 */
.edu_right_scrollbar {
    position: fixed;
    right: 10px;
    bottom: 20px;
    z-index: 99999;
}

.edu_right_scrollbar .service-box {
    display: none;
    position: absolute;
    top: 50%;
    right: 57px;
    transform: translateY(-50%);
    background: #fff;
    border: 1px solid #e8e8e8;
    width: 202px;
    box-sizing: border-box;
    padding: 15px;
    color: #666;
    line-height: 20px;
    -webkit-box-shadow: 0 0 10px 0 rgba(20,34,67,.4);
    -moz-box-shadow: 0 0 10px 0 rgba(20,34,67,.4);
    box-shadow: 0 5px 10px 0 rgba(20,34,67,.4);
}

.edu_right_scrollbar .service-box h5 {
    font-size: 14px;
    color: #666;
    font-weight: 400;
}

.edu_right_scrollbar .service:hover .service-box {
    display: block;
}

.edu_right_scrollbar .service dt span {
    color: #1276f2;
    font-size: 12px;
}

.edu_right_scrollbar .service dt {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.edu_right_scrollbar .service-box dd {
    font-size: 12px;
}

.edu_right_scrollbar .service-box dl {
    border-bottom: 1px solid #e8e8e8;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.edu_scrollbar_btn1 {
    background-color: #0089e1;
    color: #fff;
}

.edu_right_scrollbar strong {
    display: block;
    width: 20px;
    font-size: 16px;
    margin: 0 auto;
}

.edu_scrollbar_icon1 {
    background-position: -30px -130px;
}

.edu_scrollbar_icon2 {
    background-position: -60px -130px;
}

.edu_scrollbar_pop {
    position: absolute;
    right: 55px;
    top: -82px;
    display: none;
}

.edu_scrollbar_btn:hover .edu_scrollbar_pop {
    display: block;
}

.edu_scrollbar_pop_box {
    height: 215px;
    width: 370px;
    margin-right: 11px;
    background-color: #fff;
    overflow: hidden;
    border: 1px solid #D1D1D1;
}

.edu_scrollbar_pop_box ul {
    margin-top: 30px;
}

.edu_scrollbar_pop_box li {
    overflow: hidden;
    text-align: left;
    margin-bottom: 37px;
}

.edu_scrollbar_pop_box span.edu_icon_base {
    float: left;
    width: 24px;
    height: 22px;
    margin-left: 25px;
}

.edu_scrollbar_pop_box li dl {
    margin: 0 0 0 60px;
    color: #333;
    font-size: 14px;
}

.edu_scrollbar_pop_box li dl dd {
    margin-top: 15px;
}

.edu_scrollbar_btn {
    width: 55px;
    height: 55px;
    line-height: 55px;
    border: 1px solid #1276f2;
    margin-top: 40px;
    background-color: #fff;
    text-align: center;
    color: #1276f2;
    position: relative;
    cursor: pointer;
    border-radius: 50%;
}

.edu_right_scrollbar .service .edu_scrollbar_btn img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.edu_right_scrollbar .service dl:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.edu_right_scrollbar .search div {
    width: 170px;
    height: 32px;
    border: 1px solid #e8e8e8;
    display: flex;
    margin-bottom: 10px;
}

.edu_right_scrollbar .search a {
    color: #666;
}

.edu_right_scrollbar .search [type="text"] {
    width: 120px;
    outline: none;
    border: none;
}

.edu_right_scrollbar .search [type="submit"] {
    width: 50px;
    outline: none;
    border: none;
}

.edu_right_scrollbar {
    position: fixed;
    right: 12px;
    bottom: 300px;
    z-index: 99999;
    height: 134px;
}

.edu_scrollbar_btn3 {
    display: none;
}

/* 回到顶部结束 */
